Exemple #1
0
        private static string GetPlayerNameShort(
            NFLPlayer player)
        {
            var name = player.PlayerNameShort;

            if (player.IsRookie())
            {
                name += "*";
            }
            return(name);
        }