I want to add ASCII art to a c# console application this doesn't work.
in javascript, I can do this
console.log(` hey `)
but I can't do the same in c#
console.WriteLine(` hey `)
what should I do?
edit:
I want to be able to do this
Console.WriteLine(`
hello :))
:]
`)