Scalien.ConfigFile.GetUInt64Value C# (CSharp) Method

GetUInt64Value() public method

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