CSharp examples for Language Basics:string
Preformatted text with @
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? "); } }