managed code and unmanaged code
-
what are the advantages that we have in managed code over unmanaged code? This security stuff is justa out of my mind. Any help please. If I am writing a sofwrae, say a windows application , is it necessary to have take all security mmeasures? I think security is something associated with internet. I am such a naive. I am a 5 year kid may be. Amit
-
what are the advantages that we have in managed code over unmanaged code? This security stuff is justa out of my mind. Any help please. If I am writing a sofwrae, say a windows application , is it necessary to have take all security mmeasures? I think security is something associated with internet. I am such a naive. I am a 5 year kid may be. Amit
With unmanaged code you get: :: Optimized compiling. The final code is optimized for the exact processor it will be run on. :: System independance. You can run your progam in any system that supports the framework. Currently there is an implementation in Linux. I would expect more to come. :: Security. The program can be sandboxed, totaly isolating it from any resources it doesn't need. Regarding security, just make sure that the program never destroys the data it's using, and always cleans up any unmanaged resources. After that it's more a question of quality. A good program doesn't crash just because you entered some text in a field that should be numeric. --- b { font-weight: normal; }
-
With unmanaged code you get: :: Optimized compiling. The final code is optimized for the exact processor it will be run on. :: System independance. You can run your progam in any system that supports the framework. Currently there is an implementation in Linux. I would expect more to come. :: Security. The program can be sandboxed, totaly isolating it from any resources it doesn't need. Regarding security, just make sure that the program never destroys the data it's using, and always cleans up any unmanaged resources. After that it's more a question of quality. A good program doesn't crash just because you entered some text in a field that should be numeric. --- b { font-weight: normal; }
Thanks Guffa. Which are the operating systems that support the .net framework? Like if I creat a .exe in C# will it run on win98 and older version. Do those operating systems support the framework? And, can we develop applications for Linux Using C#? Amit
-
Thanks Guffa. Which are the operating systems that support the .net framework? Like if I creat a .exe in C# will it run on win98 and older version. Do those operating systems support the framework? And, can we develop applications for Linux Using C#? Amit