ARCed.Core.Ini.ReadFloat C# (CSharp) Méthode

ReadFloat() public static méthode

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
Résultat float
        public static float ReadFloat(string section, string key)
        {
            return Convert.ToSingle(ReadString(section, key));
        }