Skip to content

Instantly share code, notes, and snippets.

@ankitvijay
Last active January 7, 2018 21:23
Show Gist options
  • Select an option

  • Save ankitvijay/34ec0b89e8f2ced4017a8e0d80440958 to your computer and use it in GitHub Desktop.

Select an option

Save ankitvijay/34ec0b89e8f2ced4017a8e0d80440958 to your computer and use it in GitHub Desktop.
Debugger Display Attribute Example
[DebuggerDisplay("Name of employee is {FirstName} {Surname} and his department is {Department}")]
public class Employee
{
public string FirstName { get; set; }
public string Surname { get; set; }
public string Department { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment