using DalSoft.RestClient;
using System.Collections.Generic;
public static void Main()
var header = new Dictionary<string, string>{ { "User-Agent", "MyClient" } };
dynamic restClient = new RestClient("https://api.github.com");
var repositories = restClient.users.dalsoft.repos.Get(null, header).Result;
foreach (var repo in repositories)
Console.WriteLine(repo.name);