C
C#2mo ago
DarkSideDani

✅ Rider IDE Console Issue/Typing

Comrades, anyone using the Rider IDE here? I've been having some issues with the console where I would start writing on the line above overwriting existing text instead of writing it on the same line or below, any way of fixing this besides using an external console ? (Console.WriteLine() / Console.Write() / Console.ReadLine() ) (insert key is not pressed/used)
No description
No description
No description
4 Replies
Unknown User
Unknown User5w ago
Message Not Public
Sign In & Join Server To View
DarkSideDani
DarkSideDaniOP5w ago
It's odd cause in debug mode it works fine the code is literally nothing complex :
namespace Sec2Variables;

class Program
{
static void Main(string[] args)
{
Console.WriteLine("Testing the lines: ");
Console.ReadLine();

}
}
namespace Sec2Variables;

class Program
{
static void Main(string[] args)
{
Console.WriteLine("Testing the lines: ");
Console.ReadLine();

}
}
I can fix this by adding a \n at the end of the first WriteLine() but was wondering if that's the only way With dotnet run it works fine
Unknown User
Unknown User5w ago
Message Not Public
Sign In & Join Server To View
DarkSideDani
DarkSideDaniOP5w ago
Yeah that's a way I found to fix it, basically it's using the windows cmd instead, same as it would happen with Visual Studio when you run a project it would open the cmd 🙂 well anyhow, it is what it is, if I find a fix i'll post it

Did you find this page helpful?