Tagged Questions
0
votes
2answers
221 views
C# equivalent of C++ mem_fun?
I'd like to do something like the following in C#:
class Container {
//...
public void ForEach(Action method) {
foreach (MyClass myObj in sequence) myObj.method();
...