Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Created January 7, 2018 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ankitvijay/1190b6e6fbd948449105147461888ae9 to your computer and use it in GitHub Desktop.
Save ankitvijay/1190b6e6fbd948449105147461888ae9 to your computer and use it in GitHub Desktop.
DebuggerBrowsable Example
public class Employee
{
[DebuggerBrowsable(DebuggerBrowsableState.Collapsed)]
public string FirstName { get; set; }
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
public string Surname { get; set; }
[DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
public List<string> Reportees { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment