Mercurial > pub > ImplabNet
comparison Implab/Formats/JSON/JSONWriter.cs @ 180:c32688129f14 ref20160224
refactoring complete, JSONParser rewritten
| author | cin |
|---|---|
| date | Thu, 24 Mar 2016 02:30:46 +0300 |
| parents | 419aa51b04fd |
| children |
comparison
equal
deleted
inserted
replaced
| 179:478ef706906a | 180:c32688129f14 |
|---|---|
| 2 using System.Collections.Generic; | 2 using System.Collections.Generic; |
| 3 using System.IO; | 3 using System.IO; |
| 4 using System.Globalization; | 4 using System.Globalization; |
| 5 using System.Diagnostics; | 5 using System.Diagnostics; |
| 6 | 6 |
| 7 namespace Implab.JSON { | 7 namespace Implab.Formats.JSON { |
| 8 public class JSONWriter { | 8 public class JSONWriter { |
| 9 struct Context { | 9 struct Context { |
| 10 public bool needComma; | 10 public bool needComma; |
| 11 public JSONElementContext element; | 11 public JSONElementContext element; |
| 12 } | 12 } |
