Type.IsNullable
Restituisce true se il tipo è un tipo nullable; in caso contrario, false.
Syntax
Type.IsNullable(
type as type
) as logical
Remarks
Restituisce true
se un tipo è nullable
; in caso contrario, false
.
Examples
Example #1
Determinare se <code>number</code> è nullable.
Type.IsNullable(type number)
Result:
false
Example #2
Determinare se <code>number</code> è nullable.
Type.IsNullable(type nullable number)
Result:
true
Category
Type