Calendar::Eras Property
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 */
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1