Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/14/2010

Windows Mobile devices are used all over the world. To help make sure that an application provides a good user experience in a different locale, do not assume that formatting for strings such as dates and currency are universally recognized.

Function Formatting Considerations

Use the features built into Windows Mobile to format these strings automatically, according to the locale setting on the device. The following table lists the formatting functions you should use for different types of strings.

Data Type C++ .NET Compact Framework

Date

GetDateFormat

DateTime.ToLongDateString

DateTime.ToShortDateString

Time

GetTimeFormat

DateTime.ToLongTimeString

DateTime.ToShortString

Weekday/Month

GetDateFormat

DateTime.ToString("dddd")

DateTime.ToString("MMMM")

Currency

GetCurrencyFormat

float.ToString("C")

See Also