How to print "Hello world!" in C#



In this Shorts you can see how to print “Hello world” in csharp #shorts #programming #csharp #csharpbasics #csharptutorial #csharpdevelopers #csharpprogramming #csharpdotnet

1 Comment

  1. Here's the code 🙂

    using System;

    namespace S2K_helloWorld

    {

    class Program
    {

    static void Main(string[] args)

    {
    //print's String in the Console

    Console.WriteLine("Hello World!");

    }

    }

    }

Leave a Reply

© 2023 53GB