Skip to content

Instantly share code, notes, and snippets.

@acamino
acamino / HttpClientApproach.cs
Last active November 6, 2023 11:46
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; }