Quick Hints

Suggest ways for you to convert code
from one state to another
Quick Hints

Invert if else statement

This quick-hint for C#, VB and JavaScript lets you transform an existing if-else statement into its inverted form. This command will transform the condition to the opposite one and switch the “if” and “else” bodies:

Replace explicit type with var

When "Show hint for replace explicit type with 'var' keyword when possible" option is checked in the options dialog, then JustCode suggests you to replace all explicit type declarations with "var" type declarations.

Use String Format

JustCode can suggest you to use String.Format and increase your code readability or to add it more quickly by just typing the format string.

Add Missing This Qualifier

When "Show hint for add missing 'this.' qualifier" option is checked in the options dialog, then JustCode suggests you to add missing "this" qualifiers.

Split Declaration and Initialization

When "Show hint for split into separate declarations" option is checked in the options dialog, then JustCode suggests you to split a multiple declaration into separate declarations.