示例#1
0
 public static ValueTypeArray <T> FromArray(IEnumerable <T> list, Type type)
 {
     return(new ValueTypeArray <T>(ValueTypeArray.FromArray(list.Cast <object>(), type)));
 }
示例#2
0
 private ValueTypeArray(ValueTypeArray underlyingArray)
 {
     this.underlyingArray = underlyingArray;
 }
示例#3
0
 public static ValueTypeArray <T> FromArray(T[] array)
 {
     return(new ValueTypeArray <T>(ValueTypeArray.FromArray(array)));
 }
示例#4
0
 public ValueTypeArray(IntPtr memoryAddress)
 {
     underlyingArray = new ValueTypeArray(memoryAddress);
 }