Skip to content

Instantly share code, notes, and snippets.

View coenraadhuman's full-sized avatar
🐧

Coenraad Human coenraadhuman

🐧
View GitHub Profile
@coenraadhuman
coenraadhuman / HttpClientApproach.cs
Created September 28, 2019 06:05 — forked from acamino/HttpClientApproach.cs
4 Ways to Parse a JSON API with C#
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Headers;
namespace HttpClientApproach
{
internal class Contributor
{
public string Login { get; set; }