|
Guys,
.net is language independent but not platform independent.
.net binaries can run without the .net framework. For this you have to know about mono compiler.
Mono is a open source product (developed by Novell) that supports the .net application in other platform (just like an alternative for the .net framework).
1. Download windows mono
2. Compile the .net application using the mono compiler (msc.exe)
3. Deploy the application in Linux machine.
4. Install mono on linux machine to run the .net application.
Because of the Mono’s support in .net some people says .net is the platform independent but really it is not a platform independent.
|