MTCodeBeautifier and C# keywords

When using Sean Voisen’s MTCodeBeautifier to colorize C# code, you may notice that the keywords this and base may not get properly colorized.

This is due to an omission in the CSharp hfile. To resolve this, add “.”, to the $self->{delimiters} line in HFile_csharp.pm and rebuild your entries.

Example:

$self->{delimiters} = [".", "~", ... ];

Hopefully, Sean can work this in to the next release.