Code Providers
- 3 minutes to read
CodeRush ships with over 40 Code Providers that can generate a lot of code for you: declare class, declare property, declare method; add a getter/setter accessor to a property, add missing constructors; add the implementation of IDisposable, ISerializable, IComparable or IEquatable interfaces, and more. This simplifies and speeds up the code creation process.
The topics in the Code Providers section describe each code provider in detail. The description includes the purpose of the code provider, its availability and the “how to use” example.
How to Use
Invoke the Code Actions menu. Place the caret in the part of the code you want to change, and press Ctrl + . or Ctrl + ~.
CodeRush adds the following items to Visual Studio’s light bulb menu (Code Actions Menu):
- Code Formatters — improve code readability and layout to match a certain style without code behavior change. For example, Sort Namespace References.
- Refactorings — simplify code, improve readability, make code more flexible (for future changes), or bring the code to meet certain standard without code behavior change. For example, Inline Method.
- Code Providers — can change code behavior or declare undeclared types and members. Use them to supplement your code with blocks which you might want to type manually. For example, Create Event Trigger.
Choose the action from the invoked menu. For example, Declare Field with Initializer.
You can see a preview of the changes CodeRush can apply to your code.
Press Enter to perform the action.
The red target picker appears in some Declaration Providers (for example, Declare Constant and Declare Field). This picker allows you to choose the place where the generated code can be inserted.
You can configure which Declaration Provider should invoke the target picker in the Editor | All Languages | Code Actions | Target Picker options page.
Use the Up Arrow and Down Arrow keys to move the target picker.
Press Enter to generate code in the selected position. For example, the Declare Field with Initializer code provider adds the initialized field declaration to the current class and assigns the parameter value to it.
You can run most code providers in C# and Visual Basic. CodeRush also includes code providers that you can run in Blazor, TypeScript, JavaScript, and XAML.
Blazor Support
The following code providers are available in .razor files:
- Exit Method Contract
- Throw Exceptions Contract
- Introduce Format Item
- Add Else Statement
- Declare Constant
- Declare Field
- Declare Field with Initializer
- Declare Local
- Declare Method
- Declare Parameter
- Declare Property
- Declare Property with Initializer
You can run Declare providers from the following places in .razor files:
From @code sections.
From Razor markup.
If a Razor code-behind file (.razor.cs) exists, these code providers add the declaration to it instead of the @code section.
Note
Code providers for Blazor cannot update references in closed .razor files. Ensure all files that may be impacted by a particular code provider are open in Visual Studio before you apply the code provider.