BF2Statistics.GameResultForm.GetArmyCode C# (CSharp) Method

GetArmyCode() private method

private GetArmyCode ( int ArmyId ) : string
ArmyId int
return string
        private string GetArmyCode(int ArmyId)
        {
            switch (ArmyId)
            {
                case 0: return "us";
                case 1: return "mec";
                case 2: return "ch";
                case 3: return "us";
                case 4: return "sas";
                case 5: return "spetz";
                case 6: return "mec";
                case 7: return "chin";
                case 8: return "mecin";
                case 9: return "eu";
                case 10: return "ger";
                case 11: return "ukr";
                case 12: return "un";
                case 13: return "ca";
            }

            return "";
        }