Is there any method for making intermediate code of application platform independent?
I just want to convert my .NET application to linux application is it possible that the MSIL is convert开发者_高级运维ed to any machine code like apple intel etc. or can be executed on any os independent of architechture.
Mono is the way to run .NET code on other platforms other than Windows.
The Mono folks maintain a basic guide for cross-platform .NET development here: http://www.mono-project.com/Guidelines:Application_Portability
MSIL(CIL) is already platform-independent.
You'll probably want to have a look at Mono.
精彩评论