Created
February 22, 2012 11:42
-
-
Save Dervall/1884433 to your computer and use it in GitHub Desktop.
Removing intellisense in fluent interfaces
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[EditorBrowsable(EditorBrowsableState.Never)] | |
public interface IHideObjectMembers | |
{ | |
[EditorBrowsable(EditorBrowsableState.Never)] | |
Type GetType(); | |
[EditorBrowsable(EditorBrowsableState.Never)] | |
int GetHashCode(); | |
[EditorBrowsable(EditorBrowsableState.Never)] | |
string ToString(); | |
[EditorBrowsable(EditorBrowsableState.Never)] | |
bool Equals(object obj); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment