ClientLauncher.IniFiles.IniFiles C# (CSharp) Метод

IniFiles() публичный Метод

Initializes a new instance of the IniFile class.
public IniFiles ( string path ) : System
path string The ini file to read and write from.
Результат System
        public IniFiles(string path)
        {
            //Convert to the full path.  Because of backward compatibility,
            // the win32 functions tend to assume the path should be the
            // root Windows directory if it is not specified.  By calling
            // GetFullPath, we make sure we are always passing the full path
            // the win32 functions.
            m_path = System.IO.Path.GetFullPath(path);
        }