Ejemplo n.º 1
0
 public Charp WithStyle(CharpStyle style)
 {
     return new Charp(c, style);
 }
Ejemplo n.º 2
0
 // Constructors
 public Charp(char c)
 {
     this.c = c;
     style = 0;
 }
Ejemplo n.º 3
0
 public Charp(char c, CharpStyle style)
 {
     this.c = c;
     this.style = style;
 }
Ejemplo n.º 4
0
 public static Charp ToStyledChar(this char c, CharpStyle style)
 {
     return new Charp(c, style);
 }