I am encountering having this little problem, I am experienced, but I never had this kind of problem, is that just a simple mistake? A silly one? I dont know:
I simply want to give out a text via Console.WriteLine, but it adds a random "?" on the start of the line:
Code:
?Path:
Code:
Path:
Code:
Console.Title = "Hotfix";
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("Path: ");
string s = Console.ReadLine();
Console.WriteLine(new String('-', Console.WindowWidth));






