JSONElementContext.cs
17 lines
| 320 B
| text/x-csharp
|
CSharpLexer
cin
|
r163 | using System; | ||
using System.Collections.Generic; | ||||
using System.Linq; | ||||
using System.Text; | ||||
using System.Threading.Tasks; | ||||
namespace Implab.JSON { | ||||
/// <summary> | ||||
/// internal | ||||
/// </summary> | ||||
public enum JSONElementContext { | ||||
None, | ||||
Object, | ||||
Array, | ||||
Closed | ||||
} | ||||
} | ||||