Nitin Kumar

Nitin Kumar

  • 10
  • 18.1k
  • 67.3k

What is c# loop in vs 2021

Oct 6 2021 9:08 AM
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CSharpTutorials
{
    class Program
    {
        static void Main(string[] args)
        {
            string message = "Hello World!!";

            Console.WriteLine(message);
        }
    }
}

 


Answers (6)