0
votes
Can I prevent an inherited virtual method from being overridden in subclasses?
In B, do
protected override sealed void Render() { ... }
…
3
votes
DefaultValue for System.Drawing.SystemColors
This may help: http://support.microsoft.com/kb/311339 -- a KB article entitled
"MSDN documentation for the DefaultValueAttribute …
2
votes
C# Dynamic Event Subscription
It's not a completely general solution, but if all your events are of the form
void Foo(object o, T args) , where T derives from EventArgs, then you can use delegate contravariance to get away wit …
