In this Shorts you can see how to print “Hello world” in csharp #shorts #programming #csharp #csharpbasics #csharptutorial #csharpdevelopers #csharpprogramming #csharpdotnet
1 Comment
Leave a Reply
You must be logged in to post a comment.
In this Shorts you can see how to print “Hello world” in csharp #shorts #programming #csharp #csharpbasics #csharptutorial #csharpdevelopers #csharpprogramming #csharpdotnet
You must be logged in to post a comment.
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!");
}
}
}