public void With()
 {
     var p = new PersonWithDebuggerDisplay()
     {
         AgeInYears = 50,
         Name       = "Sarah"
     };
 }
 public void With()
 {
     var p = new PersonWithDebuggerDisplay
     {
         AgeInYears = 50,
         Name       = "Jassar"
     };
 }
Exemplo n.º 3
0
 public void TestPersonWithDebuggerDisplay()
 {
     // set breakpoint on the next line to view the DebuggerDisplay functionality
     var person = new PersonWithDebuggerDisplay("Danny", 29);
 }