Autocomplete classes in any namespace (+ add using if needed)
Hi, I would like to be able to complete any type that is not in the current using namespaces, similar to what Rider does. It is very inconvenient otherwise.
Example:
Suppose I want to use a RNGCryptoServiceProvider
class, but I don't know what namespace it's in or how it's exactly spelled. I only remember it contains Crypto in it. So I would type "Crypto", press CTRL+Space and get it in the completion list, even though its namespace was not in the using list. You can show its namespace in a completion item to the right, like RNGCryptoServiceProvider (in System.Security.Cryptography)
. Upon completion, it would insert RNGCryptoServiceProvider and add using System.Security.Cryptography
automatically. That would be very great. I stumble upon this in every query. I'm so used to Rider's ability to suggest relevant classes from any namespace, and I miss this feature in LINQPad so much. I love LINQPad for the ability to quickly prototype anything using my favorite programming language, and I respect its autocomplete feature, which is a big help, but with my suggestion it would be even greater help.