string[] groups;
int groupCount;
double[] grades;
int gradeCount;
所以groups
和grades
在兩個獨立的數組和我需要將它們合併爲一個string
並將它們添加到一個新的數組。如何將兩個單獨的對象從單獨的數組轉換爲一個字符串?
string[] test = new string[groupCount];
for (int i = 0; i < groupCount; i++)
{
test[i] = ("{0}: {1}", groups[i], Math.Round(grades[i],2));
Console.WriteLine("{0}", test[i]);
}
我該怎麼做?
是的它拋出了很多錯誤的; 它期望「;」所以它會被適當地宣佈; 也: 錯誤只有分配,調用,遞增,遞減,在等待着,新對象表達式可以用作聲明 – Tom
請看看[如何對提問](HTTP://計算器.com/help/how-to-ask) – swe