Skip to content

Instantly share code, notes, and snippets.

View michael-fa's full-sized avatar

toketwo michael-fa

View GitHub Profile
/// <summary>
/// A basic implementation of a pretty-printer or syntax highlighter for C# soure code.
/// </summary>
public class SourceColorer
{
private string _commentCssClass;
private string _keywordCssClass;
private string _quotesCssClass;
private string _typeCssClass;
private bool _addStyleDefinition;