I prepared some C# dll for my customer that doing some functionality. The thing is that I use also same dll. How can I make some methods available to him and al
You could use the C# preprocessor directives like #define to compile two versions of the library from the same code base.
#define
Then ship one version to your customer, keep the other version for yourself.