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.
linq をいじるのはこれが初めてで、自分が間違っていることを見つけるために Google で何を検索する必要があるのか よくわからないので、ここにいます。 これが私がこれまでに持っているものです:
var formattedStatuses = (from status in _statusCollection select FormatStatus(status)).AsParallel();
var formattedStatus = from status in _statusCollection.AsParallel() select FormatStatus(status);