Ok - I feel stupid but if I type a variable Resharper highlights the variable RED and then suggests split declaration and assignment
Now I want this suggestion but I do not want the variable to be red
Is there any way to remove this
I ve looked through all the options and still cannot figure this out
public static void Add<S, D>(List<S> source, List<D> destination)
where D : class
{
foreach (S sourceElement in source)
{
destination.Add(sourceElement);
}
}
EDIT: My problems seems to be the exact same thing as http://stackoverflow.com/questions/1766810/resharper-suggestion-color-issue - I cannot download SP2 VS 2005.
Basically some variables are having red as BACKGROUND
Is there any other option I can use?