I just installed CodeRush to my VS and when I run VS for the first time after installation it showed me a dialog asking if I'm experienced user. While the dialog was visible I could see that there was new menu item in VS named DevExpress. There was a small check box on that dialog saying something about menu items that I probably should ...
I was using Resharper and I wanted to try CodeRush so I suspended Resharper and installed CodeRush Xpress. When I installed CodeRush version 2010.1.4 (from this downlad page) the shortcuts did not work.
I tried F2 and other shortcuts that schold work but they did not. However I was able to invoke some CodeRush functions by clicking rig...
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 that is not declared in some package listed in using, CodeRush underlines it red as an er...
I've spent some time trying to find a way CodeRush could add using when it finds undeclared element that is in the fact class name with no using added. The solution suggested in this answer to my question (Refactor_resolve) does not work (bugged?).
In a process I found out that writing plug-ins for CodeRush is easy, so I decided to code...
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
}
}
...
I'm deciding between ReSharper 5.0 VS CodeRush 10.1. I've seen a lot of questions that target which one is better/faster than the other. For Example, ReSharper may be a little slower than CodeRush when working with large projects. What I am looking for is a list of which features are completely, outright missing in the opponent.
An e...
This thing was great at first. For example, I comment a group of highlighted code by hitting the slash and the "What happened" dialog pops up and tells me what happened.
Now it is just freaking annoying. I only really needed to know what happened the first time. Is there any way to disable this thing?
...
For a long time I have been working with ReSharper.
But after seeing CodeRush being used in a tutorial video, I started to wonder if I should consider to try CodeRush as well.
But before giving a try I wanted to ask you if you've had a chance to work both with ReSharper and CodeRush, so that you could share your objective opinions on t...
I've got a fresh install of VS 2008 Standard and I've installed DevExpress DXPerience 2008 with CodeRush! and for some reason, my intellisense decided to half-work.
I have:
class Person
{
public string FirstName { get; set; }
}
I can type:
Person p = new Person();
p.
... and intellisense will show none of the members for Perso...
Hello,
when I try to execute the test or testmethod templates respectively in visual studio 2010 using t and tm respectively it is giving me ...
using Microsoft.VisualStudio.TestTools.UnitTesting;
[TestMethod]
public void Test()
{
}
I want it to give me the nunit decorator instead and stop adding the using refere...
I have installed CodeRush and ReFactor package but i don't see any changes on my Visual Studio 2010 ide. I check add-in and extension manager but i don't see anything belong CodeRush or ReFactor. Do i have to do some extra settings for it ? How can i understand it is installed on Visual Studio 2010 ?
...
How do you supress renaming on code rush temporarily because each time I rename a local variable it has this green box on it and even changes my commented code (that uses the local variable I am using)
Example:
Consider this method:
public static tblBadorder GetBadOrderByBadOrderID(int badOrderID)
{
tblBadorder User = db.Select.F...
Am in the process of creating my own set of coderush templates for MVC both on the HTML side and in the code-behind.
Am wondering if anyone has gone through the same process and has put them anywhere on the public domain where I could obtain them rather than "reinventing the wheel"?
Otherwise will put together a list of the templates my...