Adrift in .Net
No need to create a function yourself or reference a VB library: A great post by Rick Strahl:
public static string TitleCase(string input)
{
return System.Threading.Thread.CurrentThread.
CurrentCulture.TextInfo.ToTitleCase(input);
}
Disclaimer The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.