ARCed.Core.Ini.ReadInteger C# (CSharp) Method

ReadInteger() public static method

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
return int
        public static int ReadInteger(string section, string key)
        {
            return Convert.ToInt32(ReadString(section, key));
        }