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);
double number = -100299.55;
sw.WriteLine(" Number Format: {0}", number.ToString(ci));
}
}
}
}
Output
Number Format: -100299.55
Number Format: -100299.55
Number Format: -100299.55
Number Format: -100299,55
Number Format: -100299.55