Mercurial > pub > ImplabNet
comparison Implab/JSON/JSONElementContext.cs @ 55:c0bf853aa04f
Added initial JSON support
+JSONParser
+JSONWriter
| author | cin |
|---|---|
| date | Sun, 15 Jun 2014 19:39:11 +0400 |
| parents | |
| children | 0fa293bb1351 |
comparison
equal
deleted
inserted
replaced
| 51:2c332a9c64c0 | 55:c0bf853aa04f |
|---|---|
| 1 using System; | |
| 2 using System.Collections.Generic; | |
| 3 using System.Linq; | |
| 4 using System.Text; | |
| 5 using System.Threading.Tasks; | |
| 6 | |
| 7 namespace Implab.JSON { | |
| 8 /// <summary> | |
| 9 /// internal | |
| 10 /// </summary> | |
| 11 public enum JSONElementContext { | |
| 12 None, | |
| 13 Object, | |
| 14 Array | |
| 15 } | |
| 16 } |
