I used Antlr3 a view years ago with Java. Right now I'm coding in C# and I would like to catch up with the changes in Antrl4 and use it in C# code generation. With
java org.antlr.v4.Tool -Dlanguage=CSharp Hello.g4 -visitor
the C#-sources are generated. For testing an exploring I would like to use the grun-Testrig. In java this should be the following, but in C# I get an error, obviously because the compiled Lexer/Parser should be executed in DotNet-Runtime and not in Java.
$java org.antlr.v4.runtime.misc.TestRig Hello -gui Warning: TestRig moved to org.antlr.v4.gui.TestRig; calling automatically Can't load Hello as lexer or parser
How can I use an equivalent TestRig in C#-Environment?