ConstructorBuilder.ReflectedType Property

Definition

Holds a reference to the Type object from which this object was obtained.

public:
 virtual property Type ^ ReflectedType { Type ^ get(); };
public override Type? ReflectedType { get; }
public override Type ReflectedType { get; }
member this.ReflectedType : Type
Public Overrides ReadOnly Property ReflectedType As Type

Property Value

The Type object from which this object was obtained.

Remarks

A ConstructorBuilder object represents a constructor on a particular class. In order to obtain a ConstructorInfo object, the Type object that represents the class that supports the constructor is queried. This property holds a reference to that Type object.

Applies to

See also