lwchkg / DotNetEditor

A VB/C# text editor with the ability to run code and code snippets.
Other
28 stars 4 forks source link

Fix class mode in CSCodeRunner and add tests #7

Closed lwchkg closed 7 years ago

lwchkg commented 7 years ago

The code "static void Main() { Console.Write(123); }" failed compilation because a wrong template is selected. This commit fix the bug by changing the order of the templates used.

Tests are also added to verify correctness of compilation of all implemented cases.