Ejemplo n.º 1
0
        public static PropertiesFile ReadPropertiesFile(string filename)
        {
            PropertiesFile file = new PropertiesFile(filename);

            file.ReadProperties();
            return(file);
        }
Ejemplo n.º 2
0
        public static PropertiesFile ReadPropertiesFileOrFail(string filename)
        {
            var file = new PropertiesFile(filename);

            file.ReadPropertiesOrFail();
            return(file);
        }
Ejemplo n.º 3
0
 public static PropertiesFile ReadPropertiesFileOrFail(string filename)
 {
     PropertiesFile file = new PropertiesFile(filename);
     file.ReadPropertiesOrFail();
     return file;
 }