BF2Statistics.Web.Bf2Stats.Bf2StatsData.GetMapName C# (CSharp) Метод

GetMapName() публичный статический Метод

Returns the map title based on the given map id
public static GetMapName ( int MapId ) : string
MapId int
Результат string
        public static string GetMapName(int MapId)
        {
            if (!Maps.ContainsKey(MapId))
                return "Unknown";

            return Maps[MapId];
        }