Property vs Method
April 11th, 2007[ Geek ]
One of the handy features C# has is properties as a first level concept. In most cases it’s relatively straightforward to determine when to use a property and when to use a method. There are, however, some grey lines that will crop up and I’ve bumped into a bunch recently. Some related links:
- MSDN Properties vs Methods.
- C#: Properties versus getter methods which mentions that property abuse call lead to Heisenbugs.
- Finally, I like the summary at the bottom of this.