Pretzel.Logic.Configuration.TryGetValue C# (CSharp) Метод

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

public TryGetValue ( string key, object &value ) : bool
key string
value object
Результат bool
        public bool TryGetValue(string key, out object value)
        {
            return _config.TryGetValue(key, out value);
        }