Last active
January 7, 2018 21:23
-
-
Save ankitvijay/34ec0b89e8f2ced4017a8e0d80440958 to your computer and use it in GitHub Desktop.
Debugger Display Attribute Example
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
| [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