Is it possible and if so how, to make Visual Studio highlight dynamic expressions in code?

When I just hovered above some code, visual studio told me it was a dynamic expression. This made me realize I made a mistake in my code and used one dynamic too many. But I also realized that if I had not hovered, a 'huge swath' of dynamic code that was supposed to be static would have escaped.

So I wondered if it is possible to make Visual Studio change the background color of dynamic expressions, so those pieces will be clearly recognizable.

[edit]
With dynamic expressions I mean the use of the dynamic keyword in regular code.

link|improve this question

43% accept rate
+1 Great question... it's what scares me away from the DLR. – Mehrdad Mar 8 '11 at 9:50
Sorry, I'm clueless - what do you mean dynamic code here? Operations on a dynamic variable? The System.CodeDom classes? Something else? – Rup Mar 8 '11 at 10:02
@Rup, with dynamic code I mean the use of the dynamic keyword. Edited the question a bit to clarify. Thanks for pointing it out. – Patrick Huizinga Mar 8 '11 at 10:11
2  
Have you visited the Visual Studio Gallery to check the avaliable extensions? – Morvader Mar 10 '11 at 11:14
@Morvader, I didn't even know such site existed. I'll check it out. – Patrick Huizinga Mar 13 '11 at 10:22
show 1 more comment
feedback

1 Answer

up vote 6 down vote accepted

You would need an Extension. You can create your own but I would suggest getting pre-built ones.

Visual Studio been making a lot of extansions as of late since their popularity. I would go with them but they all inhibit a lot of bugs .. so i would suggest using some safe ones like Resharper my all time favorite and for most others as well

there is also JustCode which I like.

So many more out there and if you want cruise down the Visual Studio Gallery like Morvader said. Visual Studio Gallery

EDIT:
2 notes i forgot to mention:

  • Dynamic Intellisence is included in Resharper
  • Dynamic Highlighting is included as well ... if you want to modify the color from the light blue you would need to go Tools->Options...->Environments->Fonts and Colors->Display items->ReSharper Late Bound Identifier
    Also make sure that in Resharper->Options...->Code Inspection->Settings "Enable code analysis" and "Color identifiers" are checked.
link|improve this answer
Thanks - can you recommend a pre-built extension that will highlight dynamic variables? (or can be configured to?) – Rup Mar 14 '11 at 10:11
1  
@Rup Resharper has it prebuilt. Edited the answer to clarify that. @Patrick Huizinga , tell me if this solves your problem buddy. – Reza M. Mar 15 '11 at 2:24
Sorry for the late reply. I found the color option you mentioned. At first ran into the issue that I did not have Resharper coloring enabled. I edited your answer about the specific option and about enabling coloring. (now if only someone could approve it) – Patrick Huizinga Mar 23 '11 at 13:50
@Patrick - !!Approved !! good job. – Reza M. Mar 23 '11 at 14:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.