Skip to content

Commit 7a9fabe

Browse files
committed
miss take in Examples/Program.cs
1 parent 413ccaa commit 7a9fabe

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

Examples/Program.cs

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,27 +34,20 @@
3434

3535
namespace Examples
3636
{
37-
class TestObject
37+
public class TestObject
3838
{
3939
public int Value { get; set; }
4040
public string X { get; set; }
4141
}
4242

4343
//This class for the only test.
44-
class Program
44+
public static class Program
4545
{
46-
static void Main(string[] args)
46+
internal static void Main(string[] args)
4747
{
4848
Console.OutputEncoding = Encoding.Unicode;
4949
Console.InputEncoding = Encoding.Unicode;
50-
51-
var input = "x1,x2,x3,x4";
52-
var separator = ",";
53-
var parser = new LLParserSpan(separator, input);
5450

55-
while (parser.TryParseNext(out var key, out var value))
56-
Console.WriteLine($"{key}={value}");
57-
return;
5851
F();
5952
}
6053

0 commit comments

Comments
 (0)