BF2Statistics.Web.Bf2Stats.Rank.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : Object
return Object
        public Object Clone()
        {
            return new Rank
            {
                Id = this.Id,
                ReqRank = this.ReqRank,
                MinPoints = this.MinPoints,
                ReqAwards = new Dictionary<string, int>(this.ReqAwards),
                MissingAwards = new Dictionary<string,int>(),
                PointsNeeded = 0,
                PercentComplete = 0.0,
                TimeToComplete = 0.0
            };
        }
Rank