Exemplo n.º 1
0
        public static NativeListProxy <T> CreateNativeList(int capacity = -1)
        {
            var result = new NativeListProxy <T>();

            result.mImpl = NativeListImpl.CreateNativeList((UInt32)mStructSize, capacity);
            return(result);
        }
Exemplo n.º 2
0
 public void Append(NativeListImpl scr)
 {
     SDK_CsValueList_Append(CoreObject, scr.CoreObject);
 }
Exemplo n.º 3
0
 public NativeList(int capacity = -1)
 {
     mImpl = NativeListImpl.CreateNativeList((UInt32)mStructSize, capacity);
 }