Converts a numeric value to a String with the specified string formatted by NumberFormatInfo.
[Visual Basic] Overloads Public Shared Function Format( _ ByVal value As Integer, _ ByVal format As String, _ ByVal info As NumberFormatInfo _ ) As String [C#] public static string Format( int value, string format, NumberFormatInfo info ); [C++] public: static String* Format( int value, String* format, NumberFormatInfo* info ); [JScript] public static function Format( value : int, format : String, info : NumberFormatInfo ) : String;
A string representation of value in the format specified by format.
If format is null or an empty string, value is formatted as if the general format ("G") string were specified.
The info parameter specifies the NumberFormatInfo instance used to format the number. If info is null, the numeric format information is obtained from the current locale (see NumberFormatInfo and CultureInfo for more infomation on numeric and culture formats).
The NumberFormatInfo supplies information such as the characters to use for decimal and thousand separators, and the spelling and placement of currency symbols in monetary values.
Int32 Structure | Int32 Members | System Namespace | Int32.Format Overload List | String | NumberStyles