BF2Statistics.MedalData.Rank.Exists C# (CSharp) Method

Exists() public static method

Returns whether or not the Rank ID provided is a valid BF2 Rank index
public static Exists ( int RankId ) : bool
RankId int
return bool
        public static bool Exists(int RankId)
        {
            return RankId.InRange(0, 21);
        }