Skip to content

Instantly share code, notes, and snippets.

View callumjohnspiller's full-sized avatar

Callum John Spiller callumjohnspiller

  • London
View GitHub Profile
@callumjohnspiller
callumjohnspiller / HttpServer.cs
Created July 24, 2023 17:57 — forked from define-private-public/HttpServer.cs
A Simple HTTP server in C#
// Filename: HttpServer.cs
// Author: Benjamin N. Summerton <define-private-public>
// License: Unlicense (http://unlicense.org/)
using System;
using System.IO;
using System.Text;
using System.Net;
using System.Threading.Tasks;