Permalink
Fetching contributors…
Cannot retrieve contributors at this time
27 lines (24 sloc) 727 Bytes
using System;
public class Example
{
public static void Main()
{
// <Snippet7>
string primes;
primes = String.Format("Prime numbers less than 10: {0}, {1}, {2}, {3}",
2, 3, 5, 7 );
Console.WriteLine(primes);
// The example displays the following output:
// Prime numbers less than 10: 2, 3, 5, 7
// </Snippet7>
Console.WriteLine();
// <Snippet10>
string multiple = String.Format("0x{0:X} {0:E} {0:N}",
Int64.MaxValue);
Console.WriteLine(multiple);
// The example displays the following output:
// 0x7FFFFFFFFFFFFFFF 9.223372E+018 9,223,372,036,854,775,807.00
// </Snippet10>
Console.WriteLine();
}
}