Berikut Contoh pembuatan Hello World dengan C# di Visual Studio :
1. Buat File > New > Project
2. Pilih Console App (.NET Framework) & ubah file menjadi test2
1. Buat File > New > Project
2. Pilih Console App (.NET Framework) & ubah file menjadi test2
3. Klik OK
4. input code Berikut :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace test2
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
Console.ReadLine();
}
}
}
5. Kemudian Start Program. Berikut hasil keluaran Program.
Demikian Penjelasan Kali ini. Terima Kasih
Comments
Post a Comment