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

GetMethods() protected method

protected GetMethods ( SourceFile file ) : MethodSource[]
file Mono.Debugger.SourceFile
return MethodSource[]
        protected MethodSource[] GetMethods(SourceFile file)
        {
            if (dwarf != null)
                return dwarf.GetMethods (file);

            throw new InvalidOperationException ();
        }

Usage Example

Esempio n. 1
0
 public override MethodSource[] GetMethods(SourceFile file)
 {
     return(Bfd.GetMethods(file));
 }