You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
Is your feature request related to a problem? Please describe.
I hard to know what the parameter means, specially when is string/bool/int.
Describe the solution you'd like
I would like the code to be able to detect those parameters and match the function and show me a hint of what the name of the parameter is.
Describe alternatives you've considered
We can either write the parameter name or create a variable and named accordingly.
Additional context
I see this it is a new feature of Rider/ReSharper but I don't use neither.
e.g. The developer write this code: return Regex.Split(sentence, "\\s")
and Ideally with this feature, it will look like: return Regex.Split(sentence, pattern:"\\s")