Skip to content

Instantly share code, notes, and snippets.

View redas24's full-sized avatar
🏠
Working from home

lucas ch redas24

🏠
Working from home
View GitHub Profile
@redas24
redas24 / HttpServer.cs
Created October 17, 2021 21:09 — 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;