Hi
i want comile a my c++ program using .NETFRAMEWORK libraries only at command prompt.how can i do this ??
Plz help mee..
Hi
i want comile a my c++ program using .NETFRAMEWORK libraries only at command prompt.how can i do this ??
Plz help mee..
Download the free Visual C++ Express tools from Microsoft and use the C++/CLI language (based on C++ but allows access to the whole .Net Framework) and go from there.
Basically, you're talking about Visual C++. As for using the command prompt, once you have a working program you should just be able to use something like:
cl MyProgram.cs /clr
with any other relevant options, and be up and running. If that doesn't help, give a more specific question.