How to create a VS2010 extension that uses Language Services

Posted by Hades32 on Stack Overflow See other posts from Stack Overflow or by Hades32
Published on 2010-04-19T12:44:58Z Indexed on 2010/04/19 23:13 UTC
Read the original article Hit count: 328

Creating extensions got much easier with Vs2010, but this seems not to be the case for everything...

My aim: I wnat to make method calls and property uses of STATIC classes ITALIC. (Just like Eclipse and Java)

I think I need to talk to the C# Language Service for this information, but searching for "Language Service" just yields results on how to CREATE one, not how to use one of the existing ones...

To get this question a little more general: How do I get information about properties of the code (static/visibility etc) for using it in a VSX?

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about c#