Group
Getting Started with C# Programming
Objective
Write a C# program that prints "Hello, World!" to the console.
Example C# Exercise
Show C# Code
// The following is a simple C# program that displays a greeting message
using System;
namespace HelloWorld
{
class Program
{
// The Main method is the entry point of the program
static void Main(string[] args)
{
// Output the message to the console
Console.WriteLine("Hello, World!"); // This will display "Hello, World!" on the screen
// You can change the text inside the quotation marks to print a different message
Console.WriteLine("Welcome to C# Programming!"); // This prints another message
// Wait for the user to press a key before closing the console window
Console.ReadKey(); // This prevents the console window from closing immediately
}
}
}
Output
Hello, World!
Welcome to C# Programming!