Inheritance: IDisposable
 private InstructionList(InstructionList.Internal native, bool skipVTables = false)
     : this(__CopyValue(native), skipVTables)
 {
     __ownsNativeInstance = true;
     NativeToManagedMap[__Instance] = this;
 }
 public static InstructionList __CreateInstance(InstructionList.Internal native, bool skipVTables = false)
 {
     return new InstructionList(native, skipVTables);
 }
 private static void* __CopyValue(InstructionList.Internal native)
 {
     var ret = Marshal.AllocHGlobal(8);
     LLDB.InstructionList.Internal.cctor_1(ret, new global::System.IntPtr(&native));
     return ret.ToPointer();
 }