Are any of the Visual Studio Express editions able to work with C++/CLI code? Currently when I go to “Add File” in either the C# 2008 or C++ 2008 versions I do not see the option for creating C++/CLI.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
When you create a new project in Visual C++ Express, any of the “CLR” project types is a C++/CLI application (e.g. uses the
/clrcompilation switch to include the .NET runtime). Pick either a Console or Windows Forms project type to get up and running quickly.You can also enable CLR support for an existing C++ project by flipping the option under Project Properties > Configuration Properties > General > Common Language Runtime support.