I want algorithm for all probability for uppercase for this word hgmsolgomd
I tried this code but this convert the word not letter by letter and not all probability
string name = "hgmsolgomd";
for (int i = 0; i < name.Length; i++)
{
string newName = name.ToUpper();
}