Scalien.ConfigFile.GetUInt64Value C# (CSharp) Méthode

GetUInt64Value() public méthode

public GetUInt64Value ( string key, System.UInt64 defaultValue ) : System.UInt64
key string
defaultValue System.UInt64
Résultat System.UInt64
        public UInt64 GetUInt64Value(string key, UInt64 defaultValue = 0)
        {
            string stringValue = GetStringValue(key, "" + defaultValue);
            return Convert.ToUInt64(stringValue);
        }