共用方式為


XamlType.LookupIsNullable 方法

定義

傳回值,這個值表示此 XamlType 是否代表符合 XAML 定義之可為 Null 的型別。

protected:
 virtual bool LookupIsNullable();
protected virtual bool LookupIsNullable ();
abstract member LookupIsNullable : unit -> bool
override this.LookupIsNullable : unit -> bool
Protected Overridable Function LookupIsNullable () As Boolean

傳回

Boolean

如果此 XamlType 表示可為 Null 的型別則為 true,否則為 false

備註

呼叫 即可叫 IsNullable 用這個方法。

預設實作會根據 CLR 核心程式庫可為 Null 的概念進行判斷,並針對 UnderlyingType 檢查。 如果是 null UnderlyingType ,它會傳 true 回 。

如果您想要 IsNullable 使用不同的邏輯,請覆寫此方法。

適用於