Type.IsNullable
Devolve verdadeiro se um tipo é um tipo nulo; caso contrário, falso.
Syntax
Type.IsNullable(
type as type
) as logical
Remarks
Devolve true
se um tipo for do tipo nulllable
; caso contrário, false
.
Examples
Example #1
Determinar se <code>number</code> é nulo.
Type.IsNullable(type number)
Result:
false
Example #2
Determinar se <code>type nullable number</code> é nulo.
Type.IsNullable(type nullable number)
Result:
true
Category
Type