Archive

Posts Tagged ‘C++’

Code Providers – Reference Assembly

August 30th, 2012 Comments off

The Reference Assembly code provider is a simple coding helper which allows you to add an assembly reference if one does not exist for the type reference under the editor caret. The code provider is connected to the CodeRush Code Issues feature, so the editor caret should be located in the ‘Undeclared element’ code issue, for instance:

CodeRush Reference Assembly sample code

Read more…

DevExpress Refactor! for C++

June 29th, 2010 Comments off

Refactor! for C++ integrates with Visual Studio to automate common code restructuring tasks also known asĀ code refactoring. Refactor! was designed to do these tasks with an absolute minimum of effort required from the developer. So, extracting a block of code into a method will automatically determine all parameters the block of code requires, and create the most appropriate method signature, insert the extracted code into it, and then add calling code at the location the code was extracted. All you need to do is to select the code to be extracted and where to put the new method, and Refactor! will take care of everything else.

Read more…