I would like to know how to make function composition using lambda expression. I mean, I have 2 function f(x) and g(x). How to make their composition f(g(x)) using lambda expressions? Thanks
feedback
|
|
Generic version:
Due to C#'s lack of proper lexical scoping, we need a whole bunch of temporary variables with different names. | |||||
feedback
|
| |||
|
feedback
|
|
Your question is very brief, I am not sure if I get it well, however I think this is what you need:
The problem with C# is that you need to write such compose functions for each different method signatures and therefore you could not compose functions using a generic method. | |||
|
feedback
|