Csharp/C Sharp by API/System.Globalization/NumberFormat — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 12:08, 26 мая 2010
NumberFormat.NumberGroupSeparator
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Resources;
using System.Text;
using System.Threading;
using System.Globalization;
public class MainClass
{
public static void Main()
{
string[] cultures = new string[] { "en-US", "en-GB", "es-MX", "de-DE", "ja-JP" };
using (TextWriter sw = Console.Out)
{
foreach (string c in cultures)
{
CultureInfo ci = new CultureInfo(c);
sw.WriteLine(ci.NumberFormat.NumberGroupSeparator);
}
}
}
}