Quick question: When do you decide to use properties (in C#) and when do you decide to use methods?
We are busy having this debate and have found some areas where it
Properties should only be simple set and get one liners. Anything more and it should really be moved to a method. Complex code should always be in methods.