##// END OF EJS Templates
minor fix
minor fix

File last commit:

r141:0fa293bb1351 v2
r159:5558e43c79bb v2
Show More
JSONElementContext.cs
17 lines | 320 B | text/x-csharp | CSharpLexer
/ Implab / JSON / JSONElementContext.cs
cin
Added initial JSON support...
r55 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,
cin
fixed JSON writer
r141 Array,
Closed
cin
Added initial JSON support...
r55 }
}