How to make Console.ReadLine() able to read characters such as ě?
Using visual studio, I am facing a problem where Console ReadLine converts characters such as ě or š into e and s and I dont know how to fix it
I have tried
Console.OutputEncoding = System.Text.Encoding.UTF8;
Console.InputEncoding = System.Text.Encoding.UTF8;
without success