콘솔에 Hello World! 출력하기
            
                    
                    
using System; 
using System.Collections.Generic; 
using System.Text; 
namespace HelloWorld 
{ 
    class Program 
    { 
        static void Main(string[] args) 
        { 
            System.Console.WriteLine("Hello World!"); 
        } 
    } 
}'C#' 카테고리의 다른 글
| C# 기초 강좌 추천 사이트 (0) | 2006.04.25 | 
|---|---|
| 처음 만들어본 C# 응용프로그램 (0) | 2006.04.16 | 
| C++ Faq Lite (0) | 2006.04.14 | 
| c#에서 클래스를 call by value하는법 (0) | 2006.04.12 | 
| C#에서 Win32 API 사용하기 (0) | 2006.04.12 |