示例#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);
 }