DateTimeFormatInfo コンストラクター
定義
カルチャに依存しない (インバリアントな) DateTimeFormatInfo クラスの新しい書き込み可能インスタンスを初期化します。Initializes a new writable instance of the DateTimeFormatInfo class that is culture-independent (invariant).
public:
DateTimeFormatInfo();
public DateTimeFormatInfo ();
Public Sub New ()
注釈
このコンストラクターは、 DateTimeFormatInfo インバリアントカルチャの日付と時刻の情報を表すオブジェクトを作成します。This constructor creates a DateTimeFormatInfo object that represents the date and time information of the invariant culture. 特定のカルチャに対応するオブジェクトを作成するには DateTimeFormatInfo 、 CultureInfo そのカルチャのオブジェクトを作成し、 DateTimeFormatInfo そのプロパティによって返されるオブジェクトを取得し CultureInfo.DateTimeFormat ます。To create a DateTimeFormatInfo object for a specific culture, create a CultureInfo object for that culture and retrieve the DateTimeFormatInfo object returned by its CultureInfo.DateTimeFormat property.
DateTimeFormatInfoこのコンストラクターによって作成されたオブジェクトのプロパティは変更できます。The properties of the DateTimeFormatInfo object created by this constructor can be modified. ただし、 Calendar インバリアントカルチャではグレゴリオ暦のローカライズ版のみがサポートされているため、プロパティを変更することはできません。However, you cannot modify the Calendar property, because the invariant culture supports only a localized version of the Gregorian calendar. 特定の暦を使用するオブジェクトを作成するには DateTimeFormatInfo 、その暦をサポートするオブジェクトをインスタンス化 CultureInfo し、プロパティに Calendar DateTimeFormatInfo よって返されるオブジェクトのプロパティにカレンダーを割り当てます CultureInfo.DateTimeFormat 。To create a DateTimeFormatInfo object that uses a specific calendar, you must instantiate a CultureInfo object that supports that calendar and assign the calendar to the Calendar property of the DateTimeFormatInfo object returned by the CultureInfo.DateTimeFormat property.