예제 #1
0
 internal UshortList(ushort[] array)
 {
     Invariant.Assert(array != null, "Invalid parameter");
     _storage = new UshortArray(array);
 }
예제 #2
0
 internal UshortList(ushort[] array)
 {
     Invariant.Assert(array != null, "Invalid parameter");
     _storage = new UshortArray(array); 
 }
예제 #3
0
 internal UshortList(int capacity, int leap)
 {
     Invariant.Assert(capacity >= 0 && leap >= 0, "Invalid parameter");
     _storage = new UshortArray(capacity, leap);
 }
예제 #4
0
 internal UshortList(int capacity, int leap) 
 {
     Invariant.Assert(capacity >= 0 && leap >= 0, "Invalid parameter"); 
     _storage = new UshortArray(capacity, leap); 
 }