ARCed.Core.Ini.ReadInteger C# (CSharp) Метод

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

Returns an integer value read from the file
public static ReadInteger ( string section, string key ) : int
section string The section of the .ini file
key string A key name in the .ini file
Результат int
        public static int ReadInteger(string section, string key)
        {
            return Convert.ToInt32(ReadString(section, key));
        }