Is it possible to have two partial classes in different assemblies represent the same class?
I have a class called ‘Article’ in a project called ‘MyProject.Data’, which acts as the data layer for my web application.
I have a class called ‘Article’ in a project called ‘MyProject.Data’, which acts as the data layer for my web application.
i’v a shopping_cart.aspx.cs file & also have a class file spcart.cs,
Using “new” style classes (I’m in python 3.2) is there a way to split a class over multiple files? I’ve got a large class (which really should be a single class from an object-oriented design perspective, considering coupling, etc, but it’d be nice to split over a few files just for ease of editing the class.