Skip to content

Instantly share code, notes, and snippets.

@jguadagno
Last active January 13, 2019 19:25
Show Gist options
  • Save jguadagno/47701ab9f7ee89827e451b0083c5fc45 to your computer and use it in GitHub Desktop.
Save jguadagno/47701ab9f7ee89827e451b0083c5fc45 to your computer and use it in GitHub Desktop.
DebuggerDisplayAttribute-PersonClass
public class Person
{
public string FirstName { get; set; }
public string MiddleName { get; set; }
public string LastName { get; set; }
public string FullName
{
get
{
return string.Format("{0} {1}{2}",
FirstName,
(string.IsNullOrEmpty(MiddleName)) ? string.Empty : MiddleName + " ",
LastName);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment