System.Xml.Xsl.IlGen.XmlILConstructors.GetConstructor C# (CSharp) Method

GetConstructor() private static method

private static GetConstructor ( Type className ) : ConstructorInfo
className System.Type
return System.Reflection.ConstructorInfo
        private static ConstructorInfo GetConstructor(Type className)
        {
            ConstructorInfo constrInfo = className.GetConstructor(new Type[] { });
            Debug.Assert(constrInfo != null, "Constructor " + className + " cannot be null.");
            return constrInfo;
        }
XmlILConstructors