Aspectacular.Test.StupidSimpleInProcCache.TryGet C# (CSharp) Méthode

TryGet() public méthode

public TryGet ( string key, object &val ) : bool
key string
val object
Résultat bool
        public bool TryGet(string key, out object val)
        {
            return this.cache.TryGetValue(key, out val);
        }
StupidSimpleInProcCache