Esempio n. 1
0
 public TValue this[TKey key]
 {
     get
     {
         return(dictionary[key]);
     }
     set
     {
         Thrower.NotSupportedException();
     }
 }
Esempio n. 2
0
 public T this[int index]
 {
     get
     {
         return(list[index]);
     }
     set
     {
         Thrower.NotSupportedException();
     }
 }
Esempio n. 3
0
 public void Add(T item)
 {
     Thrower.NotSupportedException();
 }
Esempio n. 4
0
 public bool Remove(KeyValuePair <TKey, TValue> item)
 {
     Thrower.NotSupportedException();
     return(false);
 }
Esempio n. 5
0
 public void Add(KeyValuePair <TKey, TValue> item)
 {
     Thrower.NotSupportedException();
 }
Esempio n. 6
0
 public void Add(TKey key, TValue value)
 {
     Thrower.NotSupportedException();
 }
Esempio n. 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();
 }
Esempio n. 14
0
 public void Clear()
 {
     Thrower.NotSupportedException();
 }
Esempio n. 15
0
 public void RemoveAt(int index)
 {
     Thrower.NotSupportedException();
 }
Esempio n. 16
0
 public bool Remove(T item)
 {
     Thrower.NotSupportedException();
     return(false);
 }
 bool ISet <T> .Add(T item)
 {
     Thrower.NotSupportedException();
     return(false);
 }