Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Eras

int [] System.Globalization.GregorianCalendarHelper.Eras
get

Definition at line 29 of file GregorianCalendarHelper.cs.

30 {
31 get
32 {
33 if (m_eras == null)
34 {
35 m_eras = new int[m_EraInfo.Length];
36 for (int i = 0; i < m_EraInfo.Length; i++)
37 {
39 }
40 }
41 return (int[])m_eras.Clone();
42 }
43 }