drawing - C# - easy to use graphic library -
good day everyone.
i have question regarding drawing libraries c#. use xna because it's easy use , convenient in aspects, but...
for new project 1 of requirements is not needed install additional libraries or other stuff on client's pc. can't use xna :(
can suggest me easy use 2d library? don't need 3d. need 2d premitives , sprite rendering.
i looked in dx , gl direction complete overkill... , tell truth have no idea how use neither of it... nor i'm particularly happy learn :)
so anyway, easy 2d drawing library can suggest me use? it'd if library written c# , include detailed tutorials / documentation.
thank in advance, , sorry if asked before.
as alternative try 1 of 2 strategies:
- static linking
- ilmerge
static linking bit of misnomer in c#. guess better phrase "compiled-in". if have source code library, include directly in project rather referencing external library.
ilmerge utility microsoft (found here) can take multiple .net assemblies , merge them 1 (i.e. pack exe , library combined exe). there very documentation on ilmerge.
Comments
Post a Comment