ykh
ykh

Reputation: 1835

Formatting C# code in text, like Visual Studio

If you notice in this very editor that I am writing in right now, when you press Ctrl + K and then paste your code and save it, it will become formatted like it was in Visual Studio.

Now I want to do my own program using Windows Forms and I would like to view the snippets of codes I save and format it accordingly.

Upvotes: 3

Views: 2389

Answers (1)

Christophe Geers
Christophe Geers

Reputation: 8962

For my blog, I use Manoli's C# formatter.

The source code of the formatter is available.

Basically you collect all the keywords, compiler directives...etc. and use regular expressions to find them. Then the author wraps HTML tags around them to format the text.

You could follow the same approach and include your own formatting which is compatible with whichever Windows Forms control you want to use.

Upvotes: 3

Related Questions