Hi i've scoured the net and found examples of how to capitalize the first character of a string or to use "ToTitleCase". Capitalize first character reulted in a things like taking the first character.toUpper and putting the string back together; some involved regex ,others not. I'm trying to do this the "ToTitleCase" way, but i can't seem to get it to work without: CultureInfo
eg:
CultureInfo.CurrentCulture.TextInfo.ToTitleCase(string);
reading on the CultureInfo.CurrentCulture Property resulted in negative security comments. Wondering what the best approach for this? any comments...
eg:
CultureInfo.CurrentCulture.TextInfo.ToTitleCase(string);
reading on the CultureInfo.CurrentCulture Property resulted in negative security comments. Wondering what the best approach for this? any comments...