Silverlight control with code highlighting?

Is there a Silverlight control there that allows you to enter text and select it as code?

For instance:

foreach (client in clients)
{
   client.Save ();
}

will become

foreach (client in Clients)
{
   client.Save();
}

I need to write a web application for the screen of programmers without programming , without wasting time on them in turn. I am thinking of a Silverlight application that will ask some simple time-limited programming questions. After the limit is over, it will send what they have through the web service.

Most of this is quite applicable to me, but I would like to be able to offer my candidates for code allocation. I do not want (and are not interested) to write a Silverlight code shortcut.

Any suggestions?

+3

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


All Articles