Ejemplo n.º 1
0
 public void DebuggerDisplayTest()
 {
     var p = new PersonWithDebuggerDisplay {
         Name           = "My name",
         AgeInYears     = 50,
         FavoriteColors = new List <string> {
             "Red", "White", "Black"
         }
     };
 }
Ejemplo n.º 2
0
 public void CompactConstructor()
 {
     var p1 = new PersonWithDebuggerDisplay("Júnior");
     var p2 = new PersonWithDebuggerDisplay("Júnior", 28);
 }