Just some Misc. Utilities that I wrote over time.
Also known as "Ring Buffer". Has a set capacity and as you add items, new items overwrite the oldest one. In other words: This holds the last {capacity} items.
http://www.stum.de/2011/11/26/circularbuffer-added-to-my-net-utils-library/
Convert an Int64 or BigInteger to a Base36 string and vice versa. http://www.stum.de/2008/10/20/base36-encoderdecoder-in-c/ http://en.wikipedia.org/wiki/Base36
Read and Write .ini Files
http://www.stum.de/2009/08/15/a-simple-ini-file-parser-for-c/
Useful when writing out a table and switching css classes for each row
http://www.stum.de/2010/01/22/a-simple-evenodd-cycler-for-net/
There are many Command Line Argument Parsers, some simple, some complicated. Here is mine.
http://www.stum.de/2008/06/22/parsing-the-command-line/
Replace characters in a string with another string or remove them altogether.
http://www.stum.de/2010/02/16/an-extension-method-to-replace-multiple-chars-in-a-string/
var displayString = stringThatMaybeNull.IfEmpty("None set.");
http://www.stum.de/2010/01/16/extension-method-return-another-string-if-string-is-null-or-empty/
"Hello, {0}".Use("Michael")
http://www.stum.de/2009/08/20/turning-string-format-into-an-extension-method/
A copy of the license can be found in LICENSE.txt or at http://mstum.mit-license.org/