我有一个带有这个签名的方法:
IEnumerable<string> GetCombinations(string s, int length)
我正在尝试string.Join
像这样使用它:
var combinations = GetCombinations(text, 2);
string result = string.Join(", ", combinations);
但我收到以下编译器错误:
cannot convert from 'System.Collections.Generic.IEnumerable<string>' to 'string[]'
不能string.Join
带IEnumerable<string>
?