BF2Statistics.MedalData.Award.IsSfAward C# (CSharp) Method

IsSfAward() public static method

Indicates whether the award is a special forces award
public static IsSfAward ( string AwardId ) : bool
AwardId string
return bool
        public static bool IsSfAward(string AwardId)
        {
            // SF awards always go as x26xxxx
            return (AwardId[1] == '2' && AwardId[2] == '6');
        }