LLDB.ModuleSpecList.FindFirstMatchingSpec C# (CSharp) Method

FindFirstMatchingSpec() public method

public FindFirstMatchingSpec ( LLDB match_spec ) : LLDB.ModuleSpec
match_spec LLDB
return LLDB.ModuleSpec
        public LLDB.ModuleSpec FindFirstMatchingSpec(LLDB.ModuleSpec match_spec)
        {
            if (ReferenceEquals(match_spec, null))
                throw new global::System.ArgumentNullException("match_spec", "Cannot be null because it is a C++ reference (&).");
            var arg0 = match_spec.__Instance;
            var __ret = new LLDB.ModuleSpec.Internal();
            Internal.FindFirstMatchingSpec_0((__Instance + __PointerAdjustment), new IntPtr(&__ret), arg0);
            return LLDB.ModuleSpec.__CreateInstance(__ret);
        }