##// END OF EJS Templates
ServiceLocator: fixed services cleanup
ServiceLocator: fixed services cleanup

File last commit:

r55:c0bf853aa04f default
r88:c4877ae77cee v2
Show More
JSONElementContext.cs
16 lines | 303 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,
Array
}
}