コード例 #1
0
 public Enumerator(NetDictionary <TKey, TValue, TField, TSerialDict, TSelf> net)
 {
     _net        = net;
     _enumerator = _net.dict.GetEnumerator();
     _current    = default(KeyValuePair <TKey, TValue>);
     _done       = false;
 }
コード例 #2
0
 public ValuesCollection(NetDictionary <TKey, TValue, TField, TSerialDict, TSelf> net)
 {
     _net = net;
 }