I’m currently reading Thomas Sowell’s A Conflict of Visions: Ideological Origins of Political Struggles . As the title suggests, it deals with certain fundamental differences in the way we see the world and how that affects our political views. Don’t worry, I’m not going to delve into politics in the...
First, I highly recommend Kent Beck's Test Driven Development: By Example . It's an excellent book. I mentioned Beck's book, because it is there that I gained an insight affecting the way I'm writing unit tests. ( So Christopher, you're saying that one of the seminal works on unit...
This text is based on the reflection tip'n'trick from the incoming zine.net magazine (unfortunately entirely written in Polish), written by me and a friend of mine, Wojciech Gebczyk. I am permitted to publish his tool and anything else I need to :) Generally if there's better solution, we should always...
I experienced an interesting gotcha with reflection today. I had a base class with a virtual property: class BaseClass { private string _someProperty = "Hello!"; public virtual string SomeProperty { get { return _someProperty; } set { _someProperty = value; } } } In a subclass I overrode the...