UppercaseFirst???

im storing data and i need everything to be normalized in int, every string should be in lowercase, but i need to display some string with the first letter in uppercase (like names).

How i can do that?

You could for instance do char.ToUpper(name[0]) + name.Substring(1);

Thanks, works great