Ejercicio
Primer contacto con C# Sharp
Objetivo
Cree un programa en C# para imprimir Hello en pantalla y, a continuación, imprima su nombre (en una línea separada).
Código de Ejemplo
using System; // Importing the System namespace to use Console functionalities
// Main class of the program
public class Program
{
// Main method where the program execution begins
static void Main()
{
// Printing "Hello" to the screen
Console.WriteLine("Hello");
// Printing the user's name on a new line
Console.WriteLine("Your Name"); // Replace "Your Name" with your actual name
}
}