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));
        }