Day 31
Learning C# At W3Schools
When learning C# at W3Schools.com, you can use our "Try it Yourself" tool, which shows both the code and the result. This will make it easier for you to understand every part as we move forward:
Program.cs
using System;namespace HelloWorld{class Program{static void Main(string[] args){
Console.WriteLine("Hello World!");}}}
Comments
Post a Comment