C++/CLI는 Visual C++ 2008 부터 등장한 .NET 용 새로운 C++ 프로그램 언어이다.
이는 Visual C++ 2005에 쓰이던 MC++(Mananged C++)의 약점을 보완하며 대체한다.
[참고 자료]
1. http://www.codeproject.com/KB/mcpp/cppcliintro01.aspx
2. http://blog.voidnish.com/index.php?p=11
3. http://recoverlee.tistory.com/37?srchid=BR1http%3A%2F%2Frecoverlee.tistory.com%2F37
------------------------------[소스 시작]
// Filename: helloWorldCli.cpp
//
// Compile: cl /clr helloWorldCli.cpp
// Execute: helloWorldCli
using namespace System;
int main(array<System::String ^> ^args)
{
Console::WriteLine("Hello, world!");
Console::WriteLine("안녕하세요?");
return 0;
}
------------------------------[소스 끝]
컴파일> cl /clr helloWorldCli.cpp
실행> helloWorldCli
Hello, world!
안녕하세요?
'프로그래밍 > C++' 카테고리의 다른 글
스트링 배열에서 스트링 찾기(find) for .NET with Visual C++/CLI (0) | 2009.04.30 |
---|---|
명령행 인자 처리 예제 for .NET with C++/CLI (0) | 2009.04.29 |
스트링 리스트에서 스트링 찾기(find) with C++ STL (0) | 2009.04.22 |
스트링 벡터에서 스트링 찾기(find) with C++ STL (0) | 2009.04.22 |
스트링 배열에서 스트링 찾기(find) with C++ STL (0) | 2009.04.22 |