CollectionEditor.CreateCollectionItemType 方法

定义

获取此集合包含的数据类型。

protected:
 virtual Type ^ CreateCollectionItemType();
protected virtual Type CreateCollectionItemType ();
abstract member CreateCollectionItemType : unit -> Type
override this.CreateCollectionItemType : unit -> Type
Protected Overridable Function CreateCollectionItemType () As Type

返回

集合中项的数据类型,如果对于该集合未找到 Item 属性,则为 Object

注解

可以从 属性检索集合 CollectionItemType 项的数据类型,这比此方法快。

用户不需要调用此方法,除非在已重写并实现此方法的派生类中。

此方法的默认实现返回集合属性的 Item 数据类型(如果存在)。

继承者说明

开发人员可以选择替代此方法,以支持不遵循典型和支持的集合模型,或者当性能至关重要且基于反射的类型分辨率太慢时。

适用于