Scalien.ConfigFile.GetInt64Value C# (CSharp) Method

GetInt64Value() public method

public GetInt64Value ( string key, System.Int64 defaultValue ) : System.Int64
key string
defaultValue System.Int64
return System.Int64
        public Int64 GetInt64Value(string key, Int64 defaultValue = 0)
        {
            string stringValue = GetStringValue(key, "" + defaultValue);
            return Convert.ToInt64(stringValue);
        }