
We have a case where we possibly should expect C# Intelliprompt, but are not receiving it
for delegates Func<T, TResult> instantiated as follows:
Func<T, TResult> foo = new Func<T, TResult>(TInst => { TInst... } );
we are not receiving T Intelliprompt off TInst dot member access, only Object members show up.
Hovering over TInst => tool tips that it is of Object type
In other scenarios T Intellimprompt works great.
Is this something that should be expected in the current version, if not, is there a recommended way to rewrite such instantiations to receive Intellimprompt?
Thank you!
[Modified 4 years ago]