Skip to content

Instantly share code, notes, and snippets.

View Hossain-Ahmed's full-sized avatar
🏢
Working from Office

Hossain Ahmed Hossain-Ahmed

🏢
Working from Office
View GitHub Profile
@Hossain-Ahmed
Hossain-Ahmed / HttpClientApproach.cs
Created June 17, 2022 16:46 — 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; }