This documentation is archived and is not being maintained.
Calendar::Eras Property
Visual Studio 2010
When overridden in a derived class, gets the list of eras in the current calendar.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: array<System::Int32>An array of integers that represents the eras in the current calendar.
The eras are in reverse chronological order, with the current era as the first element of the array, and the oldest era as the last element of the array. For example, the value of the current era in JapaneseCalendar is 4, which is the first element of the array.
The following code example displays the values contained in JapaneseCalendar::Eras.
using namespace System; using namespace System::Globalization; int main() { // Creates and initializes a JapaneseCalendar. JapaneseCalendar^ myCal = gcnew JapaneseCalendar; // Displays the values in the Eras property. for ( int i = 0; i < myCal->Eras->Length; i++ ) { Console::WriteLine( "Eras[ {0}] = {1}", i, myCal->Eras[ i ] ); } } /* This code produces the following output. Eras->Item[0] = 4 Eras->Item[1] = 3 Eras->Item[2] = 2 Eras->Item[3] = 1 */
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: