Ejemplo n.º 1
0
        public void TestMethod2()
        {
            var source = @"
 [
  [""Jack Smith"",""22.33.44.55:6666""],
  [""John Doe"",""22.33.44.11:6666""]
  ]			
			
			"            ;

            JSONDocument.ParseArray(source,
                                    new JSONDocument.ParseArrayArguments
            {
                FoundString =
                    (rank, index, text) =>
                {
                    Console.WriteLine(new { rank, index, text }.ToString());
                }
            }
                                    );
        }