示例#1
0
 public NativeSlice(NativeArray <T> array, int start)
 {
     this = new NativeSlice <T>(array, start, array.Length - start);
 }
示例#2
0
 public NativeSlice(NativeArray <T> array)
 {
     this = new NativeSlice <T>(array, 0, array.Length);
 }