Exemplo n.º 1
0
 public void Append(NativeListProxy <T> scr)
 {
     unsafe
     {
         mImpl.Append(scr.mImpl);
     }
 }
Exemplo n.º 2
0
        public static NativeListProxy <T> CreateNativeList(int capacity = -1)
        {
            var result = new NativeListProxy <T>();

            result.mImpl = NativeListImpl.CreateNativeList((UInt32)mStructSize, capacity);
            return(result);
        }