I'm using the Console
API from C# and find a difference between the Console
API from Node.js when try to use console commands to change color (`\x1B[31m'):
Using Node.js this code:
console.log("\x1B[31mTeste");
When I use this C# code:
Console.Write("\x1B[31mTeste");
Why have this difference?