LLDB.Target.FindFirstGlobalVariable C# (CSharp) Method

FindFirstGlobalVariable() public method

Find the first global (or static) variable by name.

public FindFirstGlobalVariable ( string name ) : LLDB.Value
name string /// The name of the global or static variable we are looking /// for. ///
return LLDB.Value
        public LLDB.Value FindFirstGlobalVariable(string name)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(name);
            var __ret = new LLDB.Value.Internal();
            Internal.FindFirstGlobalVariable_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0);
            Marshal.FreeHGlobal(arg0);
            return LLDB.Value.__CreateInstance(__ret);
        }