Converts the specified year to a four-digit year.
Namespace:
System.Globalization
Assembly:
mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
Public Overrides Function ToFourDigitYear ( _
year As Integer _
) As Integer
Dim instance As EastAsianLunisolarCalendar
Dim year As Integer
Dim returnValue As Integer
returnValue = instance.ToFourDigitYear(year)
public override int ToFourDigitYear(
int year
)
public:
virtual int ToFourDigitYear(
int year
) override
public override function ToFourDigitYear(
year : int
) : int
Parameters
- year
- Type: System..::.Int32
A two-digit or four-digit integer that represents the year to convert.
Return Value
Type:
System..::.Int32An integer that contains the four-digit representation of the year parameter.
The ToFourDigitYear method uses the TwoDigitYearMax property to determine the appropriate century.
ToFourDigitYear supports either a two-digit year or a four-digit year. Passing a two-digit year value (less than 100) 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 year value that is within the supported calendar range to ToFourDigitYear, the method returns the actual input value. If the application supplies a four-digit value that is outside the supported calendar range, or if it supplies a negative value, the method throws an exception.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0
Reference