Creating .net framework redistruable libraries

I had an idea, and I would like to know if it can become true or not, now we can say that I made a program using VS C # 2010, and I used 2 libraries using the system; and using system.IO;

can I take these 2 libraries from the .net frame on my own and include them in my application folder and import them into my application using the links. so I don’t need to install the .net infrastructure on the target machine, is this possible? and if so, where can I find .net libraries to download and enable. Thanks so much for your help in advance.

+3
source share
3 answers

, , CLR, .NET Framework. , .NET Framework, VMware ThinApp.

+3

No. Just because the .NET Framework runs in a software environment, and for this you need the Common Language Runtime (CLR) on the client computer. Along with this, the .NET Framework includes various other base classes that are needed to run the application!

0
source

All Articles