[Tip: c# override]

INTELLISENSE FOR OVERRIDES
In VS2008, you have IntelliSense support for implementing overrides. If you’re in a derived class and type public override and then type a space, IntelliSense will appear. Just type enough characters to select the method you want to override, press Enter, and VS2008 will build the method skeleton for you. IntelliSense is also smart enough to omit the overrides that you’ve already implemented
from the list.

原文地址:https://www.cnblogs.com/taoxu0903/p/1677325.html