JetBrains Rider 2018.1 Help

Code Inspection and Quick-Fixes in Visual Basic .NET

Almost all JetBrains Rider's code analysis features available in C# (except for Value Tracking) are also supported in VB.NET. You can find the detailed information on these features in the corresponding topics of the Code Analysis section.

In this topic, you can find some examples of using code analysis features in VB.NET:

Code Inspection

JetBrains Rider's static code analysis can detect more than 150 different errors and problems in VB.NET code.

The analysis is performed by applying code inspections to the current document or in any specified scope.

ReSharper by Language Visual Basic Code Highlighting Error

To look through the list of available inspections for VB.NET, open the Editor | Inspection Severity page of JetBrains Rider settings (Ctrl+Alt+S), and then expand the VB.NET node.

Solution-Wide Analysis

JetBrains Rider not only analyzes errors in the current file, but also inspects the whole solution taking the dependencies between files into account. It shows the results of analysis in the Errors in Solution window. For more information, see Solution-Wide Analysis.

Languages Visual Basic Errors in Solution

Inspect This

Inspect This is a shortcut to several powerful analysis features that allow you to see how values and method calls flow through you code. The list of available features depends on the current context.

ReSharper by Language Visual Basic Inspect This
For more information, see Call Tracking, Value Tracking.

Examples of Quick-fixes

Remove redundant 'imports'
If none of the symbols from a particular namespace are used, the corresponding Imports directive is considered as redundant.

ReSharper by Language Visual Basic Quick Fixes remove redundant import 01
JetBrains Rider provides the quick-fix to remove all such directives from a file.
ReSharper by Language Visual Basic Quick Fixes remove redundant import 02

Import type
If you use a symbol from a namespace that is not imported, JetBrains Rider suggests to import the corresponding namespace and provides the necessary quick-fix.

ReSharper by Language Visual Basic Quick Fixes import type 01

Add 'Async' modifier
Asynchronous operations have some advantages over synchronous programming, so ReSharper keeps pace with the times and thoroughly supports the language features for asynchronous programming.

ReSharper by Language Visual Basic Quick Fixes make async 01
The GetQuotesAsync function contains the await operator, but the function isn't defined as asynchronous. JetBrains Rider detects such a mismatch and prompts you to improve the code using the Add 'Async' modifier quick-fix. After applying the quick-fix, the missing modifier is added to the function declaration.

Change type
If the type of a method's argument doesn't match the type of the corresponding method parameter, JetBrains Rider suggests changing the type of the argument and provides the necessary quick-fix.

ReSharper by Language Visual Basic Quick Fixes change type 01

Initialize auto-property from constructor parameter
If you have a constructor parameter and you want to initialize an existing auto-property with the parameter's value, use this quick-fix.

ReSharper by Language Visual Basic Quick Fixes initialize auto property 01
ReSharper by Language Visual Basic Quick Fixes initialize auto property 02

Create method from usage
If there is a call of a method that does not exist yet, JetBrains Rider provides the necessary quick-fix to create such a method.

ReSharper by Language Visual Basic Quick Fixes create method 01
ReSharper by Language Visual Basic Quick Fixes create method 02

Last modified: 20 August 2018

See Also