Repro

- Click
( to automatically end and start providing parameters to the method.
Actual result : s.Select(Of β¦)()
Desired result : s.Select()
I don't need the (Of β¦) , since type inference works fine without it in 99% of cases, and it clutters my code. Is there a way to say autocomplete in order not to do this?
Note Apparently, this βproblemβ only affects the extension methods Enumerable.Select(Of T) and Enumerable.SelectMany(Of T) . Enumerable.Cast(Of T) and the custom extension method Select(Of T) work fine (no (Of β¦) ).
source share