All too often, source code spends a lot of time on basic housekeeping, monitoring the state of many objects. This is wasteful, and with C# it is unnecessary. Software expert Stephen Morris shows how C# provides a range of callback mechanisms that obviate the need for polling objects for state information.
Permalink for comment 232917
To read all comments associated with this story, please click here.
Member since:
2005-07-10
I thought this is why we used the delegate event model, or the event subscriber model, so that we didn't have to monitor all this stuff?