コード例 #1
0
 public TextPart(TextPartKind kind, TextColor color)
 {
     this.Kind  = kind;
     this.Color = color;
 }
コード例 #2
0
 public TextPart(TextPartKind kind, string content = null)
 {
     this.Kind    = kind;
     this.Content = content;
 }