JetBrains Rider 2018.2 Help

Code Inspection: Use preferred style for discard declaration

This inspection checks the code style for using 'var' in declarations.
By default, JetBrains Rider suggests using standalone _ for discards, e.g. (_, _) = (0, 1);. You can select Use 'var' keyword for discards on the Editor | Code Style | C# | Code Style page of JetBrains Rider settings to always use var with discards where appropriate thus making sure that there are no conflicts with variables in the scope that may be named _.

Last modified: 21 December 2018

See Also