Silverlight Control as a C # text editor in VS

I built a mechanism that is responsible for creating scripts in C #. For this, I used TextEdit, where I insert the C # code and the CodeDom algorithm to generate the dynamic type on the server side.

Everything works great.

I want to replace this TextEdit. I need a component that will give me the opportunity to write C # code with the correct formatting (as in the Visual Studio text editor), and it would be great if this component would check its contents (C # syntax).

Can anybody help me?

+4
source share
2 answers

Take a look: Scintilla.NET

+1
source

Source: https://habr.com/ru/post/1338432/


All Articles