We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 413ccaa commit 7a9fabeCopy full SHA for 7a9fabe
Examples/Program.cs
@@ -34,27 +34,20 @@
34
35
namespace Examples
36
{
37
- class TestObject
+ public class TestObject
38
39
public int Value { get; set; }
40
public string X { get; set; }
41
}
42
43
//This class for the only test.
44
- class Program
+ public static class Program
45
46
- static void Main(string[] args)
+ internal static void Main(string[] args)
47
48
Console.OutputEncoding = Encoding.Unicode;
49
Console.InputEncoding = Encoding.Unicode;
50
-
51
- var input = "x1,x2,x3,x4";
52
- var separator = ",";
53
- var parser = new LLParserSpan(separator, input);
54
55
- while (parser.TryParseNext(out var key, out var value))
56
- Console.WriteLine($"{key}={value}");
57
- return;
58
F();
59
60
0 commit comments