Пример #1
0
 public TValue this[TKey key]
 {
     get
     {
         return(dictionary[key]);
     }
     set
     {
         Thrower.NotSupportedException();
     }
 }
Пример #2
0
 public T this[int index]
 {
     get
     {
         return(list[index]);
     }
     set
     {
         Thrower.NotSupportedException();
     }
 }
Пример #3
0
 public void Add(T item)
 {
     Thrower.NotSupportedException();
 }
Пример #4
0
 public bool Remove(KeyValuePair <TKey, TValue> item)
 {
     Thrower.NotSupportedException();
     return(false);
 }
Пример #5
0
 public void Add(KeyValuePair <TKey, TValue> item)
 {
     Thrower.NotSupportedException();
 }
Пример #6
0
 public void Add(TKey key, TValue value)
 {
     Thrower.NotSupportedException();
 }
Пример #7
0
 public void Insert(int index, T item)
 {
     Thrower.NotSupportedException();
 }
 void ISet <T> .IntersectWith(IEnumerable <T> other)
 {
     Thrower.NotSupportedException();
 }
 void ICollection <T> .Clear()
 {
     Thrower.NotSupportedException();
 }
 bool ICollection <T> .Remove(T item)
 {
     Thrower.NotSupportedException();
     return(false);
 }
 void ICollection <T> .Add(T item)
 {
     Thrower.NotSupportedException();
 }
 void ISet <T> .UnionWith(IEnumerable <T> other)
 {
     Thrower.NotSupportedException();
 }
 void ISet <T> .SymmetricExceptWith(IEnumerable <T> other)
 {
     Thrower.NotSupportedException();
 }
Пример #14
0
 public void Clear()
 {
     Thrower.NotSupportedException();
 }
Пример #15
0
 public void RemoveAt(int index)
 {
     Thrower.NotSupportedException();
 }
Пример #16
0
 public bool Remove(T item)
 {
     Thrower.NotSupportedException();
     return(false);
 }
 bool ISet <T> .Add(T item)
 {
     Thrower.NotSupportedException();
     return(false);
 }