ReSharper 2017.1 Help

Coding Assistance in Visual Basic .NET

All ReSharper's coding assistance features available in C# are also supported in Visual Basic.NET. You can find the detailed information on these features in the corresponding topics of the Coding Assistance section.

In this topic, you can find some examples of using coding assistance features in Visual Basic.NET:

Syntax highlighting

You can establish a custom font and color scheme, for more information, see Configuring Fonts and Colors.

Default syntax highlighting:

/help/img/dotnet/2017.1/Coding_Assistance__Syntax_Highlighting__VB.NET.png

Code completion

Code Completion features help you write code faster by providing a set of items to complete based on surrounding context. For more information, see Code Completion (IntelliSense).

Three Code Completion features are available in Visual Basic:

  • Basic Completion

    ReSharper suggests namespaces, types, methods, fields, properties, etc.

    /help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Symbol_Completion.png
    Enum members are also included into basic completion list.
    /help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Symbol_Completion__enum.png
    If you use anonymous types, ReSharper takes their properties into account and displays them in completion list along with other available items.
    /help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Symbol_Completion__anonymous_type.png

  • Smart Completion

    ReSharper filters items in code completion list according to the type expected in current context. Look at the example below, only those items that have string type are displayed in the drop-down list.

    /help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Smart_Completion.png

  • Import Symbol Completion

    ReSharper provides completion items for types and extension methods that are not visible through import directives in current context.

    /help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Import_Symbol_Completion.png

Examples of Context Actions

ReSharper provides a set of context actions that target Visual Basic.NET code. You can find the full list of these actions in the Code Editing | Visual Basic.NET | Context actions page of ReSharper options. If necessary, you can also disable some of the actions using this page.

As soon as a context action becomes available for the current caret position, ReSharper displays the corresponding action indicator /help/img/dotnet/2017.1/ThemedIcon.ContextAction.Screen.[Gray].png to the left of the caret. Sometimes, however, ReSharper provides several contextually available features for the current caret position. In this case, the action indicator corresponding to the action with the highest priority is shown, and all other actions only appear when you expand the action list by clicking on the action indicator or pressing Alt+Enter Context actions have the lowest priority, therefore, they often appear in the bottom of the action list:

Here are some examples of context actions for Visual Basic.NET:

Add new format item
If you need to add some dynamic data to a string literal, use this context action.

/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Quick-Fixes__add_new_format_item_01.png
It wraps the string literal with the String.Format method call, adds a placeholder at the current caret position and lets you specify the corresponding parameter.

Change member visibility
If you need to adjust member visibility, ReSharper provides a context action that allows doing this quickly.

/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Context_Actions__change_visibility_01.png
/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Context_Actions__change_visibility_02.png

Convert Function to Sub
In case you want to convert a Visual Basic.NET Function to a Sub, there's the corresponding context action as well.

/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Context_Actions__convert_function_to_sub_01.png

Convert to property with backing field
You can easily transform an automatic property to a property with backing field. Place the caret at the name of an automatic property and press Alt+Enter. ReSharper suggests you the appropriate context action.

/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Context_Actions__automatic_property_01.png

Create overload without parameter
For each parameter of a function there's a context action that will create a function without that parameter which calls the original function.

/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Context_Actions__create_overload_01.png
/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Context_Actions__create_overload_02.png

Implement member
After you add a new member to a base class, the next logical step is to implement this member in all classes derived from the base class. You can write code manually, but a better decision is to apply the appropriate context action.

/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Context_Actions__implement_member_01.png
ReSharper automatically detects all derived classes and prompts you to decide where a base class member should be implemented and generates code.
/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Context_Actions__implement_member_02.png

Rearrange code

Rearranging Code Elements is available in Visual Basic as well. For example, you can move a member declaration up or down within a type.

/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Moving_Code_Elements_01.png
You can move a statement out of or into a block of code. For example, to move If statement out of For Each loop, press Ctrl+Shift+Alt+Left.
/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Moving_Code_Elements_02.png
You can reorder parameters of a method call or a method declaration. For example, to move FileId argument to the right, press Ctrl+Shift+Alt+Right.
/help/img/dotnet/2017.1/ReSharper_by_Language__Visual_Basic__Moving_Code_Elements_03.png

Last modified: 12 October 2017

See Also