C# program to print a new line


C# program to print a new line

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Collections;

using System.Threading;

using System.IO;


namespace Program

{  

    class AkbTechie

     {

            static void Main(string[] args)

                {

                    Console.WriteLine("Welcome\nTo AkbTechie");      // by using \n 

                    Console.WriteLine("Welcome\x0ATo AkbTechie");    // by using \x0A 

                    Console.WriteLine("Welcome\xATo AkbTechie");       // by using \xA 

                    Console.ReadKey();           

                }

    }

}

output:-

Welcome

To AkbTechie

Welcome

To AkbTechie

Welcome

To AkbTechie

एक टिप्पणी भेजें

0 टिप्पणियाँ