2
我試圖在引號內部使用引號,它在文本框內工作,但不是我需要字符串的位置,例如,第一行代碼有效,但我需要的字符串是一個變量。雙引號「」「?
pictureBox1.Image = MediaLib.Get["chestarmor_105"];
但接下來的3不要。最後我嘗試使用richTextBox1.Text作爲變量,因爲它似乎沒有運氣細那裏。
string chestArmor = "chestarmor_105";
richTextBox2.Text = "\"" + chestArmor + "\"";
pictureBox1.Image = MediaLib.Get[richTextBox2.Text];
我試過了許多不同的「」變體,我錯過了什麼?謝謝。