After rewriting my event invocation function to handle the events and their arguments generically, I started going over my code (to match the change), and I noticed that the compiler implicitly made the generic call.

Here's my function:

private void InvokeEvent<TArgs>(EventHandler<TArgs> invokedevent, TArgs args) 
    where TArgs : EventArgs
    {
        EventHandler<TArgs> temp = invokedevent;
        if (temp != null)
        {
            temp(this, args);
        }
    }

and here is the line to call the function:

InvokeEvent(AfterInteraction, result);

This compiles without a problem, and the intellisense even display the "correct" call (with the part).

Is this a compiler feature (the generic type can, actually, be directly inferred from the second argument), or am I going crazy over nothing and missing the point?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

If the compiler can infer all type parameters then you don't need to specify them explicitly. And in this case he obviously can infer TArgs from the second parameter.

But if it can't identify all type parameters, you need to specify all of them, even the ones the compiler could identify.

link|improve this answer
Yup that compiler is pretty smart... – vc 74 Nov 5 '10 at 10:06
feedback

It is call type inference, read about it here, search for the chapter "Type Inference"

link|improve this answer
feedback

As you have said the compiler has inferred type from the second argument.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.