public TKey this[int index] {
     get {
         return(_dict.GetKey(index));
     }
     set {
         ThrowHelper.ThrowNotSupportedException(ExceptionResource.NotSupported_KeyCollectionSet);
     }
 }
Exemplo n.º 2
0
 public TKey this[int index]
 {
     get
     {
         return(_dict.GetKey(index));
     }
     set
     {
         throw new NotSupportedException(SR.NotSupported_KeyCollectionSet);
     }
 }
Exemplo n.º 3
0
 public TKey this[int index]
 {
     get
     {
         return(_dict.GetKey(index));
     }
     set
     {
         throw new NotSupportedException();
     }
 }