我在我的代碼中遇到了一個問題,其中有兩個不同模型的屬性,其類型不能由我更改。一個是字符串數組,另一個是字符串的集合。現在我需要將字符串數組中的所有元素添加到集合中。我在下面提供一個示例代碼。將字符串數組轉換爲c中字符串的集合#
Collection<string> collection = new Collection<string>();
string[] arraystring = new string[]{"Now","Today","Tomorrow"};
collection.Add(/*Here I need to give the elements of the above array*/);
注意:我無法將Collection更改爲ICollection。它只能是集合。
什麼問題?以及爲什麼這個筆記? – andy