Search Results

2
votes

How to convince people to comment their code

Show wisdom in your desire for comments, and they will be more likely to listen. Less is more. Emphasize quality over quantity. In my team, there was a push to comment every …
1
vote

Advantages to Using Private Static Methods

When I'm writing a class, most methods fall into two categories: Methods that change the current instance's state. Helper methods that don't change the current object's state …
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 …