Skip to content

Instantly share code, notes, and snippets.

View alex-davies's full-sized avatar

Alex Davies alex-davies

View GitHub Profile
@alex-davies
alex-davies / MultipartPartParser.cs
Created August 10, 2016 18:47
Forward only stream to read multipart/form-data
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Web;
namespace MultipartParser
{
@alex-davies
alex-davies / LRUCache.cs
Created August 10, 2016 18:44
A simple LRUCache
using System;
using System.Collections.Generic;
using System.Linq;
namespace LiteCache
{
/// <summary>
/// Represents a LRU cache. Recently accessed elements remain in the cache while older items
/// are removed