JapaneseCalendar.ToFourDigitYear(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts the specified year to a four-digit year by using the TwoDigitYearMax property to determine the appropriate century.
public:
override int ToFourDigitYear(int year);
public override int ToFourDigitYear (int year);
override this.ToFourDigitYear : int -> int
Public Overrides Function ToFourDigitYear (year As Integer) As Integer
Parameters
- year
- Int32
An integer (usually two digits) that represents the year to convert.
Returns
An integer that contains the four-digit representation of year
.
Exceptions
year
is outside the range supported by the calendar.
Remarks
This method implements Calendar.ToFourDigitYear.
Because the year in the Japanese calendar is typically less than four digits long, this implementation always returns the value of the year
parameter.
ToFourDigitYear supports either a two-digit year or a four-digit year. However, a valid year is generally represented as two digits (less than 100). Passing a two-digit year value causes the method to convert the value to a four-digit value according to the TwoDigitYearMax value representing the appropriate century. If the application supplies a four-digit value, or if it supplies zero or a negative value, ToFourDigitYear throws an exception.