Mono.Debugger.SymbolFile.FindMethod C# (CSharp) Method

FindMethod() public abstract method

public abstract FindMethod ( string name ) : MethodSource
name string
return MethodSource
        public abstract MethodSource FindMethod(string name);

Usage Example

示例#1
0
        // <summary>
        //   Find method @name, which must be a full method name including the
        //   signature (System.DateTime.GetUtcOffset(System.DateTime)).
        // </summary>
        public MethodSource FindMethod(string name)
        {
            if (!SymbolsLoaded)
            {
                return(null);
            }

            return(SymbolFile.FindMethod(name));
        }