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

ReadFloat() public static method

Returns a float value read from the file
public static ReadFloat ( string section, string key ) : float
section string The section of the .ini file
key string A key name in the .ini file
return float
        public static float ReadFloat(string section, string key)
        {
            return Convert.ToSingle(ReadString(section, key));
        }