Parse and return a list of doubles using ANTLR4

Viewed 1666

How can I parse a file containing a decimal numbers into a List<double> in C# using ANTLR4? A complete, working example would illustrate how all the pieces go together.

The input file looks like this:

12.34
45.67
89.10
1 Answers
Related