Search Results

1
vote

Best Practices: When not/to use partial classes.

I've actually done the same thing. As has been stated, there is a slight readability hit on deciphering the partial classes. Decoupling is the main reason I like this solution. A pri …
2
votes

Partial Class Constructors

Search for "partial methods". This will do exactly what you want. For example: public partial class Test { public Test() { //do stuff DoExtraStuff …