Search Results

12
votes

What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)

Here is one I use frequently for presentation formatting. public static string ToTitleCase(this string mText) { string rText = ""; try { …