예제 #1
0
 public void AppendLine(string Value)
 {
     this.Append(BStringEncoding.StringToBytes(Value));
     this.AppendLine();
 }
예제 #2
0
 public BString(string Text)
     : this(BStringEncoding.StringToBytes(Text ?? ""))
 {
 }