Answers for "Hello World Dotnet"

0

Hello World Dotnet

using System;

namespace myApp
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}
Posted by: Guest on May-16-2021

Browse Popular Code Answers by Language