Mono.Debugger.Backend.Mono.MonoSymbolFile.GetMethodSource C# (CSharp) Method

GetMethodSource() private method

private GetMethodSource ( SourceFile file, int index ) : MonoMethodSource
file Mono.Debugger.SourceFile
index int
return MonoMethodSource
        MonoMethodSource GetMethodSource(SourceFile file, int index)
        {
            ensure_sources ();
            MonoMethodSource method = (MonoMethodSource) method_index_hash [index];
            if (method != null)
                return method;

            return CreateMethodSource (file, index);
        }

Same methods

MonoSymbolFile::GetMethodSource ( int index ) : MonoMethodSource