Exemplo n.º 1
0
 public IListBoxerFromIEnumerable(IEnumerable ICollection)
 {
     this.internalCollection = ICollection;
     this.methodsByReflexion = MethodsByReflexion.CreateWithCache(ICollection.GetType());
 }
Exemplo n.º 2
0
 public IListBoxerFromGenericIEnumerable(IEnumerable <T> GenericICollection)
 {
     this.GenericIEnumerable = GenericICollection;
     this.methodsByReflexion = MethodsByReflexion.CreateWithCache(GenericICollection.GetType());
 }