C# 數組、集合和字符串之間的相互轉換 字符串轉為數組 string str = "1,2,3,4"; string[] strArr = str.Split(','); 數組轉為字符串 string[] scoresArr ...