Consider we create a partial class in Project1 and we have a Project2 that has reference to Project1 .How is it possible t
It is not possible to extend a partial class in another project. Partial is only compiler sugar. The compiler will create only one class in the resulting assembly.