मुख्य कंटेंट तक स्किप करें

Type.IsNullable

यदि प्रकार निरर्थक प्रकार हो, तो सही लौटाता है; अन्‍यथा, गलत लौटाता है.

Syntax

Type.IsNullable(
type as type
) as logical

Remarks

यदि प्रकार निरर्थक प्रकार हो, तो सही लौटाता है; अन्‍यथा, गलत लौटाता है.

Examples

Example #1

निर्धारित करें कि <code>संख्‍या</code> निरर्थक है या नहीं.

Type.IsNullable(type number)

Result:

false

Example #2

निर्धारित करें कि <code>type nullable number</code> निरर्थक है या नहीं.

Type.IsNullable(type nullable number)

Result:

true

Category

Type