7
votes
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
Takes a camelCaseWord or PascalCaseWord and "wordifies" it, ie camelCaseWord => camel Case Word
public static string Wordify( this string camelCaseWord )
{
// if …
