コード例 #1
0
 public void Dispose()
 {
     _collection._elementAdded -= Set;
     _collection = null;
 }
コード例 #2
0
 internal Enumerator(EnumerableForMutatingCollection <TSrc, TT> collection)
 {
     _collection = collection;
     _collection._elementAdded += Set;
 }