Visual Studio CLR project

Posted by Vit on Stack Overflow See other posts from Stack Overflow or by Vit
Published on 2010-04-04T19:20:48Z Indexed on 2010/04/04 19:23 UTC
Read the original article Hit count: 314

Filed under:
|

Hi, so I wanted to try my first CLR project in Visual C++. So I created console project, but since every tutorial I found about CLR programming was using C#, or windows forms, I just tried writing standart c++ Hello Word app using iostream (I think code isnt needed in this case) but I though it will give me some compile error, since iostream uses precompiled functions, and CLR app compiles into MSIL. I assumed that CLR programming using C++ means just using C++ syntax, but different functions for I/O and so. So, basicly, what I want to ask is, can any native console C++ app be compiled into MSIL and run by .NET framework?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about c++