Mono.Debugger.Backend.Bfd.FindMethod C# (CSharp) Method

FindMethod() protected method

protected FindMethod ( string name ) : MethodSource
name string
return MethodSource
        protected MethodSource FindMethod(string name)
        {
            if (dwarf != null)
                return dwarf.FindMethod (name);

            return null;
        }

Usage Example

Esempio n. 1
0
 public override MethodSource FindMethod(string name)
 {
     return(Bfd.FindMethod(name));
 }