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.
変換しようとしています
string[][] allcats into string[] ToOneArray
高速なLinqの方法に関するヘルプや提案はありますか?? どうもありがとう
allcats の各要素を 1 つの文字列に結合し、それを 1 つの配列にマップしたい
これを試して:
var res = allcats.Select(a => string.Join("", a)).ToArray();