NAnt SDK Documentation - v0.92

Int32ConversionFunctions.ToString Method (Int32)

Converts the specified Int32 to its equivalent string representation.

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

Parameters

value
A Int32 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

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