LLDB.Target.FindTypes C# (CSharp) 메소드

FindTypes() 공개 메소드

public FindTypes ( string type ) : LLDB.TypeList
type string
리턴 LLDB.TypeList
        public LLDB.TypeList FindTypes(string type)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(type);
            var __ret = new LLDB.TypeList.Internal();
            Internal.FindTypes_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0);
            Marshal.FreeHGlobal(arg0);
            return LLDB.TypeList.__CreateInstance(__ret);
        }