System.Xml.Xsl.IlGen.XmlILModule.FindMethod C# (CSharp) Méthode

FindMethod() public méthode

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