Retrieves the name of the class constructor method as it is stored in metadata. This name is always ".ctor"
Object
MemberInfo
MethodBase
ConstructorInfo
[Visual Basic] MustInherit Public Class ConstructorInfo Inherits MethodBase [C#] public abstract class ConstructorInfo : MethodBase [C++] public __gc __abstract class ConstructorInfo : public MethodBase [JScript] public abstract class ConstructorInfo extends MethodBase
ConstructorInfo is used to discover the attributes of a constructor as well as to invoke a constructor. ConstructorInfo is an abstract class and does not have a public constructor. Objects are created by invoking either the GetConstructors() or GetConstructor() method of a Type object.
Namespace: System.Reflection
Assembly: mscorlib.dll