Пример #1
0
 private static void* __CopyValue(basic_string.Internal native)
 {
     var ret = Marshal.AllocHGlobal(32);
     *(basic_string.Internal*) ret = native;
     return ret.ToPointer();
 }
Пример #2
0
 private basic_string(basic_string.Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
Пример #3
0
 public static basic_string __CreateInstance(basic_string.Internal native, bool skipVTables = false)
 {
     return new basic_string(native, skipVTables);
 }