Visual Studio IntelliSense - IHideObjectMembers trick doesn't work. What am I missing?
- by stakx
The IHideObjectMembers trick can be used e.g. in fluent interface implementations to hide System.Object members from IntelliSense. (If you don't know this trick, you can read up on it via the above link; I'm just repeating the interface's usual declaration here:)
using System;
using System.ComponentModel;
…