kapetandzoni
✅ Using UTF-8 encoding
I got a very specific problem. Im writting an aplication in serbian. This is the main method public static void Main(string[] args)
{
Console.InputEncoding = System.Text.Encoding.UTF8;
Console.OutputEncoding = System.Text.Encoding.UTF8;
Console.WriteLine("Unesi nešto");
string unos = Console.ReadLine();
Console.WriteLine("Uneseno je :"+unos);
}
I can write nešto in console and it will write nešto just fine(nešto means something btw....) but when I do, CWL writes back neto instead of nešto. I just cant solve it and its staling me for past day.
Pls help
7 replies