ARCed.Helpers.Ini.ReadFloat C# (CSharp) Метод

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

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
Результат float
        public static float ReadFloat(string section, string key)
        {
            return Convert.ToSingle(ReadString(section, key));
        }