ARCed.Helpers.Ini.Load C# (CSharp) Метод

Load() публичный статический Метод

Prepares the file to be read by the parser
public static Load ( string filename ) : bool
filename string The path to be parsed
Результат bool
        public static bool Load(string filename)
        {
            if (_buffer == null)
                _buffer = new StringBuilder(256);
            _filename = File.Exists(filename) ? filename : null;
            return _filename != null;
        }