Skip to content

Instantly share code, notes, and snippets.

@lukencode
Created March 25, 2011 01:53
Show Gist options
  • Save lukencode/886229 to your computer and use it in GitHub Desktop.
Save lukencode/886229 to your computer and use it in GitHub Desktop.
[EditorBrowsable(EditorBrowsableState.Never)]
public interface IFluentInterface {
[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