What is the significance of a library being written in pure C# -
i have come across many c# libraries , many libraries written in pure c#. why advantage on other libraries.
the advantage libraries not tied architecture (x86/x86_64/...). plus because:
- the library can recompiled under x64/x86/any cpu if have source (and if not). recompiling native code more difficult.
- the library can run on non-x86 devices arm microsoft surface tablets. means, can have application portable between desktop/tablets easily.
- as pointed out, can run code under mono on linux or under other version of .net framework .net micro framework (with limitations, of course).
Comments
Post a Comment