Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 an 转换IEnumerable<int>为 format 格式的字符串#,#,#,..。我在尝试制作这种方法时遇到了可怕的事情。有什么快速简便的处理方法?
IEnumerable<int>
#,#,#,..
谢谢。
使用String.Join:
String.Join
string result = string.Join(",", enumerable);
你在谈论类似的东西:
string.Join(",", e.Select(i=>i.ToString()).ToArray());
即,连接一个可枚举的ints (e在这种情况下)?
int
e