Aspectacular.Test.StupidSimpleInProcCache.TryGet C# (CSharp) Метод

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

public TryGet ( string key, object &val ) : bool
key string
val object
Результат bool
        public bool TryGet(string key, out object val)
        {
            return this.cache.TryGetValue(key, out val);
        }
StupidSimpleInProcCache