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.
次のPythonコードに相当するものは何ですか
map(func, list)
バラで?
そのような近道はありません。foreachを実行する必要があります:
var res = new YourList (); foreach (var elem in list) res.add (func (elem));