DateOnly コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
DateOnly(Int32, Int32, Int32) |
指定した年、月、日に構造体の DateOnly 新しいインスタンスを作成します。 |
DateOnly(Int32, Int32, Int32, Calendar) |
指定したカレンダーの DateOnly 指定した年、月、日に構造体の新しいインスタンスを作成します。 |
DateOnly(Int32, Int32, Int32)
- ソース:
- DateOnly.cs
- ソース:
- DateOnly.cs
- ソース:
- DateOnly.cs
指定した年、月、日に構造体の DateOnly 新しいインスタンスを作成します。
public:
DateOnly(int year, int month, int day);
public DateOnly (int year, int month, int day);
new DateOnly : int * int * int -> DateOnly
Public Sub New (year As Integer, month As Integer, day As Integer)
パラメーター
- year
- Int32
年 (1 から 9999)。
- month
- Int32
月 (1 ~ 12)。
- day
- Int32
日付 (1 ~ month
の日数)。
適用対象
DateOnly(Int32, Int32, Int32, Calendar)
- ソース:
- DateOnly.cs
- ソース:
- DateOnly.cs
- ソース:
- DateOnly.cs
指定したカレンダーの DateOnly 指定した年、月、日に構造体の新しいインスタンスを作成します。
public:
DateOnly(int year, int month, int day, System::Globalization::Calendar ^ calendar);
public DateOnly (int year, int month, int day, System.Globalization.Calendar calendar);
new DateOnly : int * int * int * System.Globalization.Calendar -> DateOnly
Public Sub New (year As Integer, month As Integer, day As Integer, calendar As Calendar)
パラメーター
- year
- Int32
年 (1 から calendar の年数)。
- month
- Int32
月 (1 から calendar の月数)。
- day
- Int32
日付 (1 ~ month
の日数)。
- calendar
- Calendar
年、月、日month
を解釈するために使用されるカレンダー。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET