Γράφοντας "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
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