Culture-Sensitive C# Method
using System
public static string Format(string format, Object arg0);
public static string Format(string format, params Object[] args);
public static string Format(IFormatProvider provider, string format, params Object[] args);
public static string Format(string format, Object arg0, Object arg1);
public static string Format(string format, Object arg0, Object arg1, Object arg2);
Internationalization (I18n) Method Overview
Replaces each format item in a specified String with the text equivalent of a
corresponding object's value.
See Microsoft's
MSDN online documentation for more information.
I18n Issues
If passing in culture-sensitive objects for string insertion (such as a date), a CultureInfo
object will need to be used to ensure that conversion to a string is done according to the
desired Culture.
Culture and Number Format Information
|