LLDB.Debugger.SetCurrentPlatform C# (CSharp) Method

SetCurrentPlatform() public method

public SetCurrentPlatform ( string platform_name ) : LLDB.Error
platform_name string
return LLDB.Error
        public LLDB.Error SetCurrentPlatform(string platform_name)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(platform_name);
            var __ret = new LLDB.Error.Internal();
            Internal.SetCurrentPlatform_0((__Instance + __PointerAdjustment), new IntPtr(&__ret), arg0);
            Marshal.FreeHGlobal(arg0);
            return LLDB.Error.__CreateInstance(__ret);
        }