Skip to content

Instantly share code, notes, and snippets.

@jguadagno
Created January 13, 2019 19:10
Show Gist options
  • Save jguadagno/818272aebe51e1b05219714c1e78099f to your computer and use it in GitHub Desktop.
Save jguadagno/818272aebe51e1b05219714c1e78099f to your computer and use it in GitHub Desktop.
DebuggerDisplay Attribute
[DebuggerDisplay("FirstName={FirstName} LastName={LastName}")]
[DebuggerDisplay("FirstName={FirstName} LastName={LastName}")]
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);
}
}
}
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