Does managed C++ requires .NET Framework installed?help

Asked By 25 points N/A Posted on -
qa-featured

Hi guys, I creating an application for which visual C++ is necessary for runtime but my doubt is that I want to know whether it requires .NET framework to complete this work or not please anybody who knows about it please let me know that I’m going in right direction or not and how to install .NET for runtime application.Thanks in advance

SHARE
Answered By points N/A #189068

Does managed C++ requires .NET Framework installed?help

qa-featured

Hello,

Visual C++ is a great developing tool supplied by Microsoft. You can easily use Visual Studio to create programs with Visual C++.

C++ is completely independent programming language that doesn’t depend on anything. However, if you’re using Visual C++, you need the required runtime installed on your system so that programs run perfectly. There is no such option where .NET is going to be used. Create programs as native executable and that’s all.

But if you’re developing a managed or CLR targeted project, .NET Framework will be required.

Related Questions