Can this method to convert a name to proper case be improved?
- by Kelsey
I am writing a basic function to convert millions of names (one time batch process) from their current form, which is all upper case, to a proper mixed case. I came up with the following so far:
public string ConvertToProperNameCase(string input)
{
TextInfo textInfo = new CultureInfo("en-US", false).TextInfo;
char[] chars =…