コード例 #1
0
        public static List <Game> RetrieveUserGames(string username)
        {
            List <Game> games = null;

            try
            {
                games = GameAccessor.RetrieveUserGames(username);
            }
            catch (Exception)
            {
                throw;
            }
            return(games);
        }