コード例 #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);
 }