示例#1
0
 internal Enumerator([NotNull] ListBase <T> list)
 {
     _list    = list;
     _version = list._version;
     _index   = 0;
     _current = default(T);
 }
示例#2
0
 internal SynchronizedList(ListBase <T> list)
 {
     _list = list;
     _root = ((ICollection)list).SyncRoot;
 }