-2

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 :))
:]

`)

interesting
  • 11
  • 1
  • 2

1 Answers1

0

chose what you want

Console.WriteLine(" hey ")
//will print:  hey

Console.WriteLine("` hey `")
//will print: ` hey `
Ruben Helsloot
  • 12,582
  • 6
  • 26
  • 49
TECNO
  • 162
  • 2
  • 3
  • 15