コード例 #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();
 }
コード例 #8
0
 void ISet <T> .IntersectWith(IEnumerable <T> other)
 {
     Thrower.NotSupportedException();
 }
コード例 #9
0
 void ICollection <T> .Clear()
 {
     Thrower.NotSupportedException();
 }
コード例 #10
0
 bool ICollection <T> .Remove(T item)
 {
     Thrower.NotSupportedException();
     return(false);
 }
コード例 #11
0
 void ICollection <T> .Add(T item)
 {
     Thrower.NotSupportedException();
 }
コード例 #12
0
 void ISet <T> .UnionWith(IEnumerable <T> other)
 {
     Thrower.NotSupportedException();
 }
コード例 #13
0
 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);
 }
コード例 #17
0
 bool ISet <T> .Add(T item)
 {
     Thrower.NotSupportedException();
     return(false);
 }