I have a partial Class "ClassA" in an assembly MyAssembly.
Can I extend this partial class in a separate assembly "MyExtendedAssembly" with the same name "ClassA"
When partial classes are not possible in a separate assembly, is there any other way where we can extend the properties without inheritance?
Thanks