using System.Globalization;
public static void Main()
byte[] bytes = { 18, 85, 19, 198, 67, 11, 13, 21, 249, 210, 90, 17, 3, 209};
CultureInfo[] providers = {new CultureInfo("en-us"),
new CultureInfo("fr-fr"),
new CultureInfo("de-de"),
new CultureInfo("es-es")};
foreach (byte byteValue in bytes)
foreach (CultureInfo provider in providers)
Console.Write("{0,3} ({1}) ", byteValue.ToString(provider), provider.Name);