예제 #1
0
파일: StyledChar.cs 프로젝트: fourtf/4Plug
 public Charp WithStyle(CharpStyle style)
 {
     return new Charp(c, style);
 }
예제 #2
0
파일: StyledChar.cs 프로젝트: fourtf/4Plug
 // Constructors
 public Charp(char c)
 {
     this.c = c;
     style = 0;
 }
예제 #3
0
파일: StyledChar.cs 프로젝트: fourtf/4Plug
 public Charp(char c, CharpStyle style)
 {
     this.c = c;
     this.style = style;
 }
예제 #4
0
파일: StyledChar.cs 프로젝트: fourtf/4Plug
 public static Charp ToStyledChar(this char c, CharpStyle style)
 {
     return new Charp(c, style);
 }