✅ Use of Func as part of function definition
Hello guys, I came across this function definition where we use
Funct<>
as part of the function definition. I'm a bit lost here, what are we doing? I know that Func<>
is a delegate where we can store function references but here we aren't doing that. Oh, or may be that's because we are returning a function reference?8 Replies
Wym?
You are returning a function that takes an int and returns an int
It's not typed explicitly, but the compiler can figure it out from the return type
hmm I'm confused about the
Func<int,int>
part; it refers to what in the code, the inner function whick takes num as parameter?Well, it's the return type of the
GetMultiplier
method
That method returns a lambda/function
Maybe this clears things up?oh wait
ohh ok yeah I see
makes more sense now, I didn't notice that we were using num without declare it as an int, this is what you mean by "not explicitly typed" ?
Yeah
C# is decently smart about figuring out the types on your lambdas
This is possible because of
Func<int,int>
?Yep
yeah I see, it's clearer now, thanks !!