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:

  1. the library can recompiled under x64/x86/any cpu if have source (and if not). recompiling native code more difficult.
  2. the library can run on non-x86 devices arm microsoft surface tablets. means, can have application portable between desktop/tablets easily.
  3. 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

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -