System.Xml.Xsl.IlGen.XmlILModule.FindMethod C# (CSharp) Method

FindMethod() public method

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