I have a set of 3rd party DLLs that I would like to simplify for internal use by creating a wrapper class.
Is there a way to do this so that the final application that uses my wrapper DLL does not have to set a reference to the 3rd party DLLs directly? I want to be able to use inhertiance in my classes and also public enums in the 3rd party DLL.
I guess what I want is a way for my wrapper class to pass through the reference to the 3rd party DLLs.
Thank you!
Karl
Is there a way to do this so that the final application that uses my wrapper DLL does not have to set a reference to the 3rd party DLLs directly? I want to be able to use inhertiance in my classes and also public enums in the 3rd party DLL.
I guess what I want is a way for my wrapper class to pass through the reference to the 3rd party DLLs.
Thank you!
Karl