String and WriteLine Format Specifiers : String Format « String « C# / CSharp Tutorial






Character          Interpretation

C or c             Currency

D or d             Decimal

E or e             Exponent

F or f             Fixed point

G or g             General

N or n             Number; similar to F with the addition of comma thousand separators

P or p             Percentage

R or r             Round-trip 

X or x             Hex








5.14.String Format
5.14.1..NET String Format Characters
5.14.2.Use String.Format() to format a value.
5.14.3.String format: {0,3:D}, {1,8:D}
5.14.4.Use ToString to format double: C
5.14.5.String format: {0:C}
5.14.6.Formatting Using the R Format Specifier
5.14.7.String and WriteLine Format Specifiers