Tagged Questions
2
votes
6answers
778 views
Is there a nice simple & elegant way to make ICollection more fluent in C#?
Example: I would like to have the Add method of ICollection of a custom collection class to implement method chaining and fluent languages so I can do this:
...
0
votes
1answer
78 views
Method chaining and the finishing problem
are there any approaches, given a statement like the following
First().Second();
to know from within First() whether/when Second() has executed?
Reference: ...