Pular para o conteúdo principal

Type.IsNullable

Retorna true se um tipo for um tipo anulável; caso contrário, false.

Syntax

Type.IsNullable(
type as type
) as logical

Remarks

Retorna true se um tipo for um tipo nulo; caso contrário, false.

Examples

Example #1

Determine se <code>número</code> é anulável.

Type.IsNullable(type number)

Result:

false

Example #2

Determine se <code>número nulo de tipo</code> é anulável.

Type.IsNullable(type nullable number)

Result:

true

Category

Type