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