NAnt SDK Documentation - v0.92

Int64ConversionFunctions.ToString Method (Int64)

Converts the specified Int64 to its equivalent string representation.

[Visual Basic]
<Function(Name:="to-string")>
Overloads Public Shared Function ToString( _
   ByVal value As Long _
) As String
[C#]
[Function(Name="to-string")]
public static string ToString(
   long value
);

Parameters

value
A Int64 to convert.

Return Value

The string representation of value, consisting of a negative sign if the value is negative, and a sequence of digits ranging from 0 to 9 with no leading zeroes.

Remarks

value is formatted with the NumberFormatInfo for the invariant culture.

See Also

Int64ConversionFunctions Class | NAnt.Core.Functions Namespace | Int64ConversionFunctions.ToString Overload List