Skip to content

Instantly share code, notes, and snippets.

View GerardSmit's full-sized avatar

Gerard Smit GerardSmit

View GitHub Profile
using System;
using System.IO;
using System.Text;
public class StringReaderStream : Stream
{
private readonly string _input;
private readonly Encoding _encoding;
private readonly int _maxBytesPerChar;
private readonly int _inputLength;