Type.IsNullable
Sintassi
Type.IsNullable(type as type) as logical
Informazioni su
Restituisce true
se un tipo è nullable
. In caso contrario, false
.
Esempio 1
Determinare se number
ammette valori Null.
Utilizzo
Type.IsNullable(type number)
Output
false
Esempio 2
Determinare se type nullable number
ammette valori Null.
Utilizzo
Type.IsNullable(type nullable number)
Output
true