string s = "KODIGWINDOW"; Console.WriteLine(s.ToLower());
codeaft@codeaft:~/csharp$ dotnet run kodigwindow codeaft@codeaft:~/csharp$
string s1 = "KODIGWINDOW"; string s2 = ""; for (int i = 0; i < s1.Length; i++) { if (s1[i] >= 65 && s1[i] <= 92) s2 += (char)(s1[i] + 32); else s2 += s1[i]; } Console.WriteLine(s2);