I'm just beginning to learn C# and am curious if there is an ASCII way to get colored output in the terminal, for example:
In Ruby I can do this:
puts "\e[32mThis will be green\e[0m"
In JavaScript I can do this:
function say(input){
console.log("\033[32m" + input + "\033[0m"
}
say("This will be green")
How can I do the same thing in C#?