わかりました、これを含むこの文字列Player.Character
があり"Average Man{[Attributes (Mind 10) (Body 10) (Soul 10)]}"
ます。
そして、このdo-loopを設定して、一度にこの文字列を1文字ずつ通過し、"["
チェックする各文字を別の文字列に追加するときにこれを確認する必要がありますContainerName
。問題は、ContainerName にこれだけが含まれていること"["
です"Average Man{"
。
なぜこれが起こっているのか、そしておそらく私のアマチュアの心が処理できる解決策を理解するのを手伝ってくれる人がいれば、私は最も親切です.
ああ、ここに私のコードがあります。
int count = -1;
string ContainerName = "";
//Finds Start of container
do
{
count = count + 1;
ContainerName = ContainerName + Player.Character[count].ToString();
} while (Player.Character[count].ToString() != "[" &&
Player.Character.Length - 1 > count);
textBox1.Text = ContainerName;