LLDB.Target.FindFirstType C# (CSharp) Method

FindFirstType() public method

public FindFirstType ( string type ) : LLDB.Type
type string
return LLDB.Type
        public LLDB.Type FindFirstType(string type)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(type);
            var __ret = new LLDB.Type.Internal();
            Internal.FindFirstType_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0);
            Marshal.FreeHGlobal(arg0);
            return LLDB.Type.__CreateInstance(__ret);
        }