示例#1
0
 public virtual void Dispose()
 {
     _collection = null;
     _current    = default(T);
     index       = -1;
 }
示例#2
0
 public DomainObjectEnumerator(DomainObjectRepository <T> collection)
 {
     _collection = collection;
     index       = -1;
     _current    = default(T);
 }