Ejemplo n.º 1
0
 public IndexGetSetAccessor(IIndexGetSet <TKey, TValue> indexable, TKey key)
 {
     Indexable = indexable;
     Key       = key;
 }
Ejemplo n.º 2
0
 public static IndexGetSetAccessor <TKey, TValue> Access <TKey, TValue>(this IIndexGetSet <TKey, TValue> indexable, TKey key)
 {
     return(new IndexGetSetAccessor <TKey, TValue>(indexable, key));
 }