BF2Statistics.MedalData.Award.IsSfAward C# (CSharp) 메소드

IsSfAward() 공개 정적인 메소드

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