Utilities
Every software developer builds utility code. This code can range from complex libraries
to simple command line tools. Here are a few of the favorites developed by us.
Stringbuildify
Turns any block of text into a StringBuilder. This lets you easily convert javascript
into something that can be output from an ASP.NET page.
LazyAsyncResult<T>
A useful utility class for anybody writing asynchronous code and struggling with
the IAsyncResult interface. It's a generic class that nicely abstracts away the
hard work of passing state through your asynchronous methods.
ServiceProxy<TClient>
A simple generic wrapper for Windows Communication Foundation (WCF) proxy clients
generated by Visual Studio that allows you to Dispose them, even when they are in
a faulted state.