Mono.CompilerServices.SymbolWriter.MonoSymbolFile.GetMethod C# (CSharp) 메소드

GetMethod() 공개 메소드

public GetMethod ( int index ) : MethodEntry
index int
리턴 MethodEntry
        public MethodEntry GetMethod(int index)
        {
            if ((index < 1) || (index > ot.MethodCount))
                throw new ArgumentException ();
            if (reader == null)
                throw new InvalidOperationException ();

            lock (this) {
                read_methods ();
                return method_list [index - 1];
            }
        }