Title says it all, how good is C# type inference? I read somewhere that it's only for local variables? Does it work for class level attributes? For method signatures? Method return types? etc.
|
|
|
|
|
|
|
There are a few main kinds of type inference in C#:
I've probably forgotten some other features which might be called "type inference". I suspect you're mostly interested in the first, but the others might be relevant to you too :) |
||
|
|
|
|
It works only with local variables as I understand it. |
||
|
|
|
|
It can only be used for local variables, but it can detect the type in many different forms.
EDIT: One more example of Tye Inference is with Lambdas. IE:
|
|||
|
|
