Pretzel.Logic.Configuration.TryGetValue C# (CSharp) Method

TryGetValue() public method

public TryGetValue ( string key, object &value ) : bool
key string
value object
return bool
        public bool TryGetValue(string key, out object value)
        {
            return _config.TryGetValue(key, out value);
        }