Tag Archives: C#

Announcing Manta

It’s taken much too long, but I’ve finally created an online project for Manta, which until recently didn’t even have an official name. Manta is an open source .NET library that currently features a variety of I/O- and web-related classes … Continue reading

Posted in Coding | Tagged , , | Leave a comment

C# Quines

Writing quines is a fun way to while away an afternoon, especially when trying to make them as short as possible. This is the result of my attempt at writing the shortest C# quine possible (155 characters, source file): class … Continue reading

Posted in Coding | Tagged , | Leave a comment

Crouching Enumerator, Hidden Boxing

A few months ago, I was playing around with a simple C# permutation generator to build a word list, with each character position having its own list of characters to iterate through: List<T>.Enumerator enumerator = characterList.GetEnumerator(); while (condition) { if … Continue reading

Posted in Coding | Tagged , | Leave a comment