I'm working on a visual studio 2010 extension and was wondering on how to obtain an existing language service ( the one for C# specifically ). All the articles I've seen on the web so far are about "Implementing your own language service", but I haven't been able to find any info on obtaining an M<existing one.

Just to provide some context here, the extension needs to open a custom wpf form on demand,in which i want to host a C# code editor window.

I'm not yet sure this is even possible, however any tips would be appreciated.

link|improve this question
Prob doesnt help you but scintillanet.codeplex.com is what a lot of projects use in this case. – rangitatanz Feb 16 at 11:40
Not exactly on point, but the scintilla.net does look interesting. Thanks. – redeye Feb 16 at 12:22
feedback

1 Answer

One thing you can have a look at is the Roslyn CTP. I've seen a demo of it at the Dutch Tech Days last week and it looks quite nice.

It can help you in hosting your own coding environment and easily compile snippets. But it's still really beta and it doesn't support all the language features yet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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