Create a standalone exe without the need to install .NET framework

前端 未结 7 1532
没有蜡笔的小新
没有蜡笔的小新 2020-12-31 00:41

I\'m a student and at the moment i\'m doing an internship at a company. This internship is about analysing a project. For this project I have made a demo to show to the Mark

7条回答
  •  轮回少年
    2020-12-31 00:44

    If you want to execute an application that is developed using Net Framework 4, you will need to have installed .Net Framework 4 on client computer.

    Your application is compiled in CIL (Common Intermediate Language), so it needs to be interpreted by the framework engine.

    It is the same if you want to execute a Java program. You will have to install the Java Machine.

    The only way you don't need to install frameworks is programming native applications with C, C++.

提交回复
热议问题