Menggunakan C# untuk membuat sebuah program sama halnya seperti pada program - program C sebelumnya. Hanya saja terletak dalam syntax bahasa yang berbeda. Dibawah ini adalah sebuah contoh program C#, yaitu Program Hello World secara umum :
using System;
namespace Helloword
{
/// <summary>
/// Summary description for Class1.
/// </summary>
class Demo
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: Add code to start application here
//
Console.WriteLine("Hello, World!");
Console.ReadLine();
}
}
}
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment