How to mask DLL in .NET ?

Posted by ytrewq on Stack Overflow See other posts from Stack Overflow or by ytrewq
Published on 2010-06-03T17:11:24Z Indexed on 2010/06/03 17:14 UTC
Read the original article Hit count: 321

Filed under:
|
|

Let's say I have a DLL that provides math calculus functions.

To use it, I include the using Colhq.Math.Basic; namespace.

How could I use it by adding a statement like using Blala.Functions.Math; ?

So how could I use everything (methods, enums, etc.) from a DLL by using a different namespace ? Is there a one-shot way to wrap or mask a DLL ?

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET