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.
IEnumerable<int>をフォーマットの文字列に変換しようとしています#,#,#,..。私はこれの方法を作ろうとしてひどい時間を過ごしています。素早く簡単に処理する方法は何ですか?
IEnumerable<int>
#,#,#,..
ありがとう。
使用String.Join:
String.Join
string result = string.Join(",", enumerable);
あなたは次のようなことについて話しているのですか:
string.Join(",", e.Select(i=>i.ToString()).ToArray());
つまり、列挙可能なints (eこの場合) を連結しますか?
int
e