This is yet another simple tool that makes my life easier on occasion. All it does is capitalize every word in the string.
public static string ToTitleCase(this string str)
{
return CultureInfo.CurrentCulture.TextInfo.ToTitleCase(str.ToLower());
}