I was wondering if someone could explain what Func<int, string> is and how it is used with some clear examples.
Thanks in advance
|
feedback
|
|
Are you familiar with delegates in general? I have a page about delegates and events which may help if not, although it's more geared towards explaining the differences between the two.
In other words,
Result:
| |||||||||||
feedback
|
|
MSDN is your friend: http://msdn.microsoft.com/en-us/library/bb549151.aspx They have good examples on how to use it. Edit: I am not trying to post this as a RTFM. Sometimes I find the easiest explanation for something is to look at the MSDN article. - JH | |||||||||||||||||
feedback
|
|
It is a delegate that takes one Here is an example of its usage:
| |||||
|
feedback
|
|
A
There, I just made up a function that eats ints and returns strings. How would I use it?
Not very sexy, I know, but that's the simple idea that a lot of tricks are based upon. Now, let's use a Func instead.
Instead of calling IntAsString on each member, I created a reference to it called fnc (these references to methods are called delegates) and used that instead. (Remember fnc eats ints and returns strings). This example is not very sexy, but a ton of the clever stuff you will see is based on the simple idea of functions, delegates and extension methods. One of the best primers on this stuff I've seen is here. He's got a lot more real examples. :) | |||
|
feedback
|