初心者レベルでC#を学んでいます。Unicode 文字に整数を追加するとどうなるかわかりません。以下の例で追加は何をしますか?
int amount = int.Parse(number.Text);
steps.Text = "";
string current = "";
do
{
int nextDigit = amount % 8;
amount /= 8;
int digitCode = '0' + nextDigit;
char digit = Convert.ToChar(digitCode);
current = digit + current;
steps.Text += current + "\n";
}
while (amount != 0);