Int64.IsInt64

Syntax

IsInt64(Value: String): Boolean;

Parameters

Value. String value which is to be checked.

Description

The IsInt64 method checks if the specified string value is a number that can be represented with the Int64 data type.

Comments

The method returns True if the specified value can be converted to the Int64 data type, and False if conversion is impossible. Use the Parse or TryParse method for conversion.

See also:

The Int64 Class