It happens that I'm trying to print thousands of strings per second, but I see that my application is affected because Console.WriteLine (""); makes the application much slower, is there any way to optimize it?
I'm working with multi threads In each IP address a report is printed in real time https://i.stack.imgur.com/Lozjj.png all IP addresses that access the print server. They are approximately 10,000 per second
Console.WriteLine(" Client [" + IP + "] are logged");