Type.IsImport 属性

定义

获取一个值,该值指示 Type 是否应用了 ComImportAttribute 属性,如果应用了该属性,则表示它是从 COM 类型库导入的。

public:
 property bool IsImport { bool get(); };
public bool IsImport { get; }
member this.IsImport : bool
Public ReadOnly Property IsImport As Boolean

属性值

Boolean

如果 true 具有 Type,则为 ComImportAttribute;否则为 false

实现

注解

如果当前 表示构造的泛型类型,则此属性将应用于构造该类型的 Type 泛型类型定义。 例如,如果当前 Type 表示 (MyGenericType<int> MyGenericType(Of Integer) 中Visual Basic) ,则此属性的值由MyGenericType<T>.

如果当前 Type 表示泛型类型或泛型方法的定义中的类型参数,则此属性始终返回 false

适用于

另请参阅