The C# Programming Yellow Book
Rate it:
Open Preview
31%
Flag icon
I’d much rather have a program explode in a shower of sparks and flames than silently do the wrong thing.
55%
Flag icon
The keyword virtual means “I might want to make another version of this method in a child class”.
55%
Flag icon
override and virtual a kind of matched pair. You use virtual to mark a method as able to be overridden and override to actually provide a replacement for the method.