_Type.IsPointer 属性

定义

为 COM 对象提供对 IsPointer 属性的与版本无关的访问。Provides COM objects with version-independent access to the IsPointer property.

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

属性值

Boolean

如果 Type 是指针,则为 true;否则为 falsetrue if the Type is a pointer; otherwise, false.

注解

此属性用于从非托管代码访问托管类,不应从托管代码调用。This property is for access to managed classes from unmanaged code, and should not be called from managed code.

Type.IsPointer属性获取一个值,该值指示是否 Type 为指针。The Type.IsPointer property gets a value indicating whether the Type is a pointer.

适用于