I'm looking for a way to write a custom .net class that would allow for nested methods.
For example... say I have a class X with a function Y that returns a list. Then I have another function that returns a sorted list...
I would like to be able to do something like x.y().z() where z would accept the output of y() as its input.
Basically how .toLower() or .toUpper() can be tacked on to any string.
I'm trying to google it but I'm not even sure if I'm asking the right question.
Thanks
