Partial classes in separate dlls

Viewed 47305

Is it possible to have two parts (same namespace, same class name) to a partial class in separate DLLs?

7 Answers

You probably just want to create a Wrapper class within you own library, around the class in the 3rd part library. Then add whatever functionality to the wrapper class.

Related