public abstract class MyClassName
{
private List<string> _myMemberVariable = new List<string>();
public List<string> MyMemberVariable
{
get { return _myMemberVariable; }
set { _myMemberVariable = value; }
}
// Remark: Comments are colored correctly
public void MyMethod(int myParam)
{
Console.Out.PrintLine("C# Code Formatting!");
}
}
You can download the javascript for this programming language over on the GitHub project page