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