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
0
votes
1 answer

devexpress coderush and XAML

this question is targeted towards coderush users. I am trying to recover from a bad surgery and bought an online tutorial on how to convert old wpf apps to the new modern style(metro). The instructor on video has Resharper installed, where I have…
Ray
  • 429
  • 6
  • 16
0
votes
1 answer

CodeRush Extract class

In coderush I can extract a method based on my code. Is there a way to extract an entire class? mycode = 5 turns into myclass= new myclass; mycode = mymethod() myclass { methods() { return mycode=5 } }
Xander
  • 9,069
  • 14
  • 70
  • 129
0
votes
1 answer

Why does CodeRush warn me of an Unused Declaration in code?

I have this code, which I use all over my applications to save data back to the database. public bool SaveDemo() { bool success = false; try { using (DataTable dt =…
Buck Hicks
  • 1,534
  • 16
  • 27
0
votes
1 answer

Disable CodeRush Refactor Popup Menu

I'm trying to figure out how to disable the CodeRush (v14.1.5.0) Refactor menu that pops up in Visual Studio 2013 (the ellipses). I do want the refactoring capabilities of CodeRush, but I'd rather just access it with a right click or the Ctrl + `…
Dustin Cleveland
  • 618
  • 7
  • 17
0
votes
1 answer

CodeRush not working with c++ visual studio 2013

I installed the newest version. The GUI (CodeRush buttons) is there but none of them work. Also other features does not work (tips when placing caret over code or debugging - none of them work). Has anyone encountered this problem?
0
votes
1 answer

Scroll Wheel in Delphi 7 with CodeRush

One casualty of my brief dalliance with Delphi 2010 and subsequent return to using Delphi 7 was my acceptance of the wheel-scrolling behaviour in Delphi 7 with CodeRush installed. The scroll wheel scrolls horizontally in that environment, which…
GM Mugford
  • 211
  • 3
  • 8
0
votes
2 answers

Refactor Implicit Variable Assignment in Array to Explicit Assignment Outside of Array

I have a code block that is implicitly adding variables to an array, i.e. context.People.Add( new Person { Name = "Joe", Age = 45 }, new Person { Name = "Alicia", Age = 33 } ); What I need is for the variables to be accessible outside of the…
Josh McKearin
  • 742
  • 4
  • 19
  • 42
0
votes
1 answer

CodeRush QuickPair remove

I like CodeRush QuickPair feature. Does anybody know how to remove quotes or braces with a shortcut? For example: Can I select "some string"; // with quotes and remove quotes with a shortcut and will get some string; // without quotes or select…
user1826289
0
votes
3 answers

Is there something like CodeRush from Java?

Is there something like CodeRush for Java?
Mark Sayewich
  • 69
  • 1
  • 3
0
votes
3 answers

What complex refactoring features do you wish there were?

Tools like CodeRush and Resharper offer lots of simple refactorings, such as 'Rename Variable'. But if you could have any refactoring feature at all (no matter how complex), what would it be? (I know, everyone wants a 'make program perfect'…
Dmitri Nesteruk
  • 23,067
  • 22
  • 97
  • 166
0
votes
1 answer

visual studio 2010 or 2012 - any setting or tool to stop delete of collapsed region/section of code

Does anyone know if there is a setting that will stop you from deleting a collapsed section of code? If I am deleting something I want to avoid accidentally deleting something I don't remember is there. Like if I am deleting 3-4 methods and one I…
Brian Hanf
  • 544
  • 2
  • 11
  • 31
0
votes
3 answers

Project dependencies not loading in Visual Studio 2012

I'm not sure if this is a add-on/extension issue but I'm having a heck of a time with Visual Studio 2012 on two computers. I believe it is DevExpress CodeRush causing the problems as it seems to work fine when I uninstall it but I'm not 100%…
Neal
  • 9,487
  • 15
  • 58
  • 101
0
votes
2 answers

Refactoring: Extract method into a class

Is there a tool that would allow me to extract methods into classes without much manual work? I need this on massive scale, 100's of methods.
epitka
  • 17,275
  • 20
  • 88
  • 141
0
votes
1 answer

Code Rush: Keyboard Shortcut to Change Member Scope

When using CodeRush/Refactor Pro, I can use my mouse to toggle a context menu to change the scope of a member. By default, pressing CRTL+' doesn;t toggle this menu. Is there anyway to achive this using a keyboard shortcut? A soltuion involving…
Jaimal Chohan
  • 8,530
  • 6
  • 43
  • 64
0
votes
1 answer

Editing Devexpress CodeRush SmartConstructor code template

How can I edit the behavior of the SmartConstructor TextCommand? For class variables: public string MyVar1; public string MyVar2; SmartConstructor generates public Class1(string myVar1, string myVar2) { MyVar1 = myVar1; MyVar2 =…
El Mark
  • 707
  • 2
  • 8
  • 18
1 2 3
9
10