Scalien.ConfigFile.GetUInt64Value C# (CSharp) Метод

GetUInt64Value() публичный Метод

public GetUInt64Value ( string key, System.UInt64 defaultValue ) : System.UInt64
key string
defaultValue System.UInt64
Результат System.UInt64
        public UInt64 GetUInt64Value(string key, UInt64 defaultValue = 0)
        {
            string stringValue = GetStringValue(key, "" + defaultValue);
            return Convert.ToUInt64(stringValue);
        }