-6
您好我需要在文本框的一行中寫入數組的每個元素 我試過這段代碼我的數組是從輸入文件中獲取的也是該陣列如何在文本框的行中寫入數組的每個元素C#
string[] myArray = values[(int)TextBoxIndices.idcourses].Split('-');
string[] tempArray = new string[Int32.Parse(values[(int)TextBoxIndices.totalnbre])];
tempArray = idc.Lines;
for (int t = 0; t < Int32.Parse(values[(int)TextBoxIndices.totalnbre]); t++)
{
tempArray = myArray[t] + '\n';
}
什麼沒跟工作? – BradleyDotNET
當我運行程序時出現for循環中的錯誤(索引超出了界限)... @ BradleyDotNET –
@EdgardAbouKheir Where,specific? – Servy