Αναζήτηση

Saturday, May 12, 2012

C# "Hello World" Program

Γράφοντας "Hello World" με C#


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication6
{
    class Program
    {
        static void Main(string[] args)
        {
            System.Console.WriteLine("Hello World!");
        }
    }
}
Original Article : http://developerpages.gr/index.php/el/desktop-development-2/c-languages/8-c-hello-world-program

No comments:

Post a Comment