YearMonthDay Constructor (Int32, Int32, Int32) |
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public YearMonthDay(
int year,
int month,
int day
)
Public Sub New (
year As Integer,
month As Integer,
day As Integer
)
public:
YearMonthDay(
int year,
int month,
int day
)
new :
year : int *
month : int *
day : int -> YearMonthDay
Parameters
- year
- Type: SystemInt32
The year. - month
- Type: SystemInt32
The month of the year (in the range 1 through 12) - day
- Type: SystemInt32
The day of the month (in the range 1 through the number of
days in month)
Exceptions Exception | Condition |
---|
ArgumentException |
Thrown when the year, month, or
day is outside of its acceptable range. |
See Also