System.Xml.Xsl.IlGen.XmlILModule.FindMethod C# (CSharp) 메소드

FindMethod() 공개 메소드

Find a MethodInfo of the specified name and return it. Return null if no such method exists.
public FindMethod ( string name ) : MethodInfo
name string
리턴 System.Reflection.MethodInfo
        public MethodInfo FindMethod(string name)
        {
            return (MethodInfo)_methods[name];
        }