private static void* __CopyValue(basic_string.Internal native) { var ret = Marshal.AllocHGlobal(32); *(basic_string.Internal*) ret = native; return ret.ToPointer(); }
private basic_string(basic_string.Internal native, bool skipVTables = false) : this(__CopyValue(native), skipVTables) { __ownsNativeInstance = true; NativeToManagedMap[__Instance] = this; }
public static basic_string __CreateInstance(basic_string.Internal native, bool skipVTables = false) { return new basic_string(native, skipVTables); }