Example #1
0
 /// <summary />
 public Int32Collection(Int32Collection collection)
 {
     AddRange(collection);
 }
Example #2
0
 // Construction
 /// <summary />
 public Enumerator(Int32Collection tc)
 {
     m_collection = tc;
     m_index = -1;
     m_version = tc.m_version;
 }