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 ?