String.Format(String) Method |
Top |
DescriptionConverts the number held by the calling String into a string based on the format specifiers given by formatString. The format specifiers are standard C/C++ specifiers as used with the sprintf function. The Format method converts a double precision floating point value to a string; the IFormat method should be used to convert an integer value to a string.
The format is specified using the syntax shown below. Each field is a single character or a number signifying a particular format option. The flag(s), width, precision, and length are optional. The simplest format specifications contain only the percent sign and a type character (for example, "%f"). For more information, see the Parsing Arbitrary String Data reference.
%[flags][width][.precision][length]type
Timing Precision Mode This page describes functionality in nanosecond timing precision mode. Click here to see the documentation for this object in millisecond timing precision mode.
Method Signature
Arguments
Return Value
Returns a String containing the converted version of the calling String.
Syntax
See also
|