4
int stxval = 0x02; //found this value on wikipedia
string mystring = "Hello";
StringBuilder builder = new StringBuilder(mystring);
builder.Append(stxval);
ここでは、文字列ビルダー"2Hello"
が追加されています。このフォームで "Hello"という文字列を取得する方法は?代わりに文字列に制御文字を追加する方法