TypeInfo.DeclaredConstructors 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取由当前类型声明的构造函数的集合。
public:
virtual property System::Collections::Generic::IEnumerable<System::Reflection::ConstructorInfo ^> ^ DeclaredConstructors { System::Collections::Generic::IEnumerable<System::Reflection::ConstructorInfo ^> ^ get(); };
public virtual System.Collections.Generic.IEnumerable<System.Reflection.ConstructorInfo> DeclaredConstructors { get; }
member this.DeclaredConstructors : seq<System.Reflection.ConstructorInfo>
Public Overridable ReadOnly Property DeclaredConstructors As IEnumerable(Of ConstructorInfo)
属性值
由当前类型声明的构造函数的集合。
注解
若要筛选 属性的结果 DeclaredConstructors ,请使用 LINQ 查询。 例如,对于源自运行时 (的反射对象,作为) 的结果 typeof(Object)
,可以使用 类中的 RuntimeReflectionExtensions 方法遍历继承树。 自定义反射上下文中的对象的使用者不能使用这些方法,必须自行遍历继承树。