LLDB.Module.GetTypeByID C# (CSharp) Method

GetTypeByID() public method

Get a type using its type ID.

Each symbol file reader will assign different user IDs to their

types, but it is sometimes useful when debugging type issues to

be able to grab a type using its type ID.

For DWARF debug info, the type ID is the DIE offset.

public GetTypeByID ( ulong uid ) : LLDB.Type
uid ulong /// The type user ID. ///
return LLDB.Type
        public LLDB.Type GetTypeByID(ulong uid)
        {
            var __ret = new LLDB.Type.Internal();
            Internal.GetTypeByID_0((__Instance + __PointerAdjustment), new IntPtr(&__ret), uid);
            return LLDB.Type.__CreateInstance(__ret);
        }