System.Xml.Xsl.IlGen.XmlILMethods.GetMethod C# (CSharp) Method

GetMethod() public static method

public static GetMethod ( Type className, string methName ) : MethodInfo
className System.Type
methName string
return System.Reflection.MethodInfo
        public static MethodInfo GetMethod(Type className, string methName)
        {
            MethodInfo methInfo = className.GetMethod(methName);
            Debug.Assert(methInfo != null, "Method " + className.Name + "." + methName + " cannot be null.");
            return methInfo;
        }