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

Remove an item from the Cache.
public Remove ( object key ) : void
key object The Id of the Item in the Cache to remove.
Результат void
Пример #1
0
 public void Remove_Null_Key() {
     var cache = new SharedCacheClient();
     cache.Remove(null);
 }
        public void Remove_Null_Key()
        {
            var cache = new SharedCacheClient();

            cache.Remove(null);
        }