Exemplo n.º 1
0
        public static bool Ext(string value, string ext)
        {
            AssertionConcern.AssertArgumentNotEmpty(value, "Value cannot be null.");
            AssertionConcern.AssertArgumentNotEmpty(ext, "Ext cannot be null.");

            return(value.EndsWith(ext));
        }
Exemplo n.º 2
0
        public CsvManager(string filePath)
        {
            AssertionConcern.AssertArgumentNotEmpty(filePath, "Please inform path of file");

            FilePath = filePath;
        }