Questions tagged [coderush]

CodeRush is a Productivity tool by DevExpress that extends the functionality of Microsoft Visual Studio 2010, 2012 and 2013.

CodeRush provides many features designed to enhance your productivity within Visual Studio.

Key features include refactorings (180+), code providers (70+), visualization tools, advanced selection tools, clipboard tools, navigation tools, code templates (900+), unit test runner and extensibility model.

It also provides static analysis tools like CodeIssues and Metrics which draw you attention to potential problem areas of your code.

It supports C#, VB.NET, ASP.NET, ASP.NET MVC, XML, XAML and JavaScript. The software works in all versions of Visual Studio since Visual Studio 2002; excluding Visual Studio Express editions.

139 questions
3
votes
2 answers

How to install CodeRush and Resharper? CodeRush Shortcut Missing

I am trying to install CodeRush and ReSharper together. After installing ReSharper, my CodeRush shortcuts disappears. Does anyone know how to restore my CodeRush shorts with Resharper installed? This is my current setup: 1. Visual Studio 2008 2.…
NTT
  • 31
  • 2
3
votes
2 answers

System.Type.GetType does not throw when versions don't match

I one of my xUnit tests, I was using following code to locate a matching type: var type = System.Type.GetType (typeName, throwOnError: false); where typeName looks like: Epsitec.Lydia.EventStore.TestBinaryEventStore+SimpleEvent,…
Pierre Arnaud
  • 10,212
  • 11
  • 77
  • 108
3
votes
3 answers

Automatic addition of `using` in CodeRush

I just installed CodeRush Pro (evaluation trial) for Visual Studio and I can say I like it much so far. Comparing to Resharper there is only one type of feature I'm really missing. It is the way CodeRush deals with using. When I type some class name…
Rasto
  • 17,204
  • 47
  • 154
  • 245
3
votes
1 answer

Moving from CodeRush to ReSharper (or vice-versa). Any resources/help for making the transition?

I've been using CodeRush with Refactor! Pro for a while, but I'm considering moving to ReSharper. Once I uninstalled CodeRush, I immediately began to miss some key features, including: navigating references using the Tab key, renaming variables,…
Chris W. Rea
  • 5,430
  • 41
  • 58
3
votes
3 answers

CodeRush Xpress Colors

I downloaded the free CodeRush Xpress version to try it. Is there a way to change the colors it uses for it's highlighting and line drawing? ie the matching braces. I have a dark color scheme and my monitor I have VS on must suck because I can't…
3
votes
3 answers

DevExpress CodeRush/Refactor - Context Specfic 'Tips'

I decided to give CodeRush/Refactor a go (after a rial of Resharper) and one problem I have is that CodeRush/Refactor puts a lot of 'artifacts' in my code window. By 'artifacts', I mean icons/glyphs next to every Method, Property and Field name,…
Jaimal Chohan
  • 8,530
  • 6
  • 43
  • 64
3
votes
1 answer

Adjust Namespaces equivalent for CodeRush

Resharper has Adjust Namespaces which allows you to correct the namespaces of all files in a folder, project, or solution. Is there a feature or plugin available for CodeRush/Refactor that is comparible to Resharper's Adjust Namespaces feature.
dr.
  • 1,429
  • 12
  • 18
2
votes
0 answers

CodeRush from DevExpress

if I may, I just would like to use this site to place some tips on using CodeRush from DevExpress...It may help some one. Thanks from the VS IDE Menu > DevExpress > Tool windows > Coderush click any where in your code then you will get the possible…
ramnz
  • 631
  • 1
  • 6
  • 24
2
votes
9 answers

Flatten conditional as a refactoring

Consider: if (something) { // Code... } With CodeRush installed it recommended doing: if (!something) { return; } // Code... Could someone explain how this is better? Surely there is no benefit what so ever.
Finglas
  • 15,518
  • 10
  • 56
  • 89
2
votes
5 answers

CodeRush suggests making a method static if it has parameters, agree or disagree?

I use Developer Express's CodeRush product which has a feature called Code Issues which makes suggestions to optimize your code. I've noticed that if you have a method that has parameters it will always suggest making this method static. In the…
Neal
  • 9,487
  • 15
  • 58
  • 101
2
votes
1 answer

Coderush code clean up settings

When I run Coderush's clean up file command it takes code formated like this: public object GetConfig() { //fluent mappings are lined up return MsConfig.MsSql2008 .ShowSql() .UseReflectionOptimizer() …
wusher
  • 12,291
  • 22
  • 72
  • 95
2
votes
1 answer

Coderush Intellassist vs Intellisense

I'm using coderush with vs 2008. coding in VB.net. I don't see any evidence of Intellassist, all i see is the usual VS intellisense. Is this normal? Preferred? Do most people leave the defaults or do most/some turn off vs's intellisense? Does…
jonchicoine
  • 510
  • 3
  • 14
2
votes
1 answer

Coderush search for specific issues

how i can in coderush see only the issues related to a specific problem. For example i want to iterate over the clases that is not calling dispose(). Thanks.
user143887
2
votes
1 answer

Coderush %?SysDate()% date format

Can the date format returned by CodeRush sysDate() be changed. It returns mm/dd/yy where as I want dd/mm/yyyy. Using CodeRush for Delphi.
Paul McCarthy
  • 818
  • 9
  • 24
2
votes
1 answer

How to get ancestors of a class in Coderush?

I was trying to get all ancestors (Classes and Interfaces) of a Class to a list. I tried this code but did not work. public static List AncestorList; public static void GetAncestorList(Class curClass) { …
Vinod Menezes
  • 355
  • 2
  • 10
1 2
3
9 10