using System.Collections.Generic;
public static void Main()
List<Game> gameList = new List<Game>();
WebClient wc = new WebClient();
var json = wc.DownloadString("http://api.steampowered.com/IPlayerService/GetOwnedGames/v0001/?key=30A260C0B3B379A218C5533CC14CA96D&steamid=76561197994394917&format=json");
var root = JsonConvert.DeserializeObject<RootObject>(json);
Console.WriteLine("Count: " + root.response.game_count);
foreach (var game in root.response.games)
Console.WriteLine(game.appid);
public int playtime_forever
public int ? playtime_2weeks
public class SteamResponse
public SteamResponse response