Preformatted text with @ - CSharp Language Basics

CSharp examples for Language Basics:string

Description

Preformatted text with @

Demo Code

using System;/*from w  w w.  j  av  a 2  s  .c  o m*/
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
class Program
{
   static void Main(string[] args)
   {
      // Bob Dylan...
      Console.WriteLine(@"
          Yes, and how many times
          can a man turn his head
          and pretend
          that he just doesn't see?
      ");
   }
}

Result


Related Tutorials