Server.Mobiles.PlayerMobile.ChampionTitleInfo.GetLastDecay C# (CSharp) Méthode

GetLastDecay() public méthode

public GetLastDecay ( int index ) : System.DateTime
index int
Résultat System.DateTime
            public DateTime GetLastDecay(int index)
            {
                if (m_Values == null || index < 0 || index >= m_Values.Length)
                    return DateTime.MinValue;

                if (m_Values[index] == null)
                    m_Values[index] = new TitleInfo();

                return m_Values[index].LastDecay;
            }