DateTimeOffset::ToString Method (IFormatProvider)
Converts the value of the current DateTimeOffset object to its equivalent string representation using the specified culture-specific formatting information.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- formatProvider
- Type: System::IFormatProvider
An object that supplies culture-specific formatting information.
Return Value
Type: System::StringA string representation of the value of the current DateTimeOffset object, as specified by formatProvider.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The date and time is outside the range of dates supported by the calendar used by formatProvider. |
The return value of this method is identical to that of its equivalent overload of the DateTime::ToString method, except that it includes a space followed by the offset appended at the end of the string. In other words, it formats output using the short date pattern, the long time pattern, and the zzz custom format string, with each element separated from the previous element by a space.
The format of these three elements is defined by the formatProvider parameter. The formatProvider parameter can be either of the following:
A CultureInfo object that represents the culture whose formatting conventions are applied to the returned string. The DateTimeFormatInfo object returned by the CultureInfo::DateTimeFormat property defines the formatting of the returned string.
A DateTimeFormatInfo object that defines the format of date and time data.
If formatProvider is nullptr, the DateTimeFormatInfo object associated with the current culture is used (see CurrentCulture).
Notes to CallersThe ToString(IFormatProvider) method returns the string representation of the date and time in the calendar used by the culture represented by the formatProvider parameter. Its calendar is defined by the Calendar property. If the value of the current DateTimeOffset instance is earlier than Calendar::MinSupportedDateTime or later than Calendar::MaxSupportedDateTime, the method throws an ArgumentOutOfRangeException. The following example provides an illustration. It attempts to format a date that is outside the range of the JapaneseCalendar class.
The following example displays a DateTimeOffset object using CultureInfo objects that represent the invariant culture, as well as four other cultures.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.