I wrote this program to display a message on the screen hello world using C# as my programming language.
My website is http://www.jakerpomperada.com
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
My mobile number here in the Philippines is 09173084360.
My telephone number at home here in Bacolod City, Negros Occidental Philippines is +63 (034) 4335675.
Here in Bacolod City I also accepting computer repair, networking and Arduino Project development at a very affordable price.
Sample Program Output
Program Listing
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// hello_world.cs
// Author : Jake Rodriguez Pomperada,MAED-IT
// October 25, 2019 Friday 5:19 AM
Console.Write("\n\n");
Console.Write("\tHello World");
Console.Write("\n\n");
Console.Write("\tWelcome To C# Programming");
Console.ReadKey();
}
}
}