##// END OF EJS Templates
JsonXmlReader performance tuning...
JsonXmlReader performance tuning JsonScanner now operates strings and doesn't parses number and literals. Added SerializationHelpers to common serialize/deserialize operations

File last commit:

r228:6fa235c5a760 v2
r229:5f7a3e1d32b9 v2
Show More
JsonElementContext.cs
11 lines | 198 B | text/x-csharp | CSharpLexer
namespace Implab.Formats.Json {
/// <summary>
/// internal
/// </summary>
enum JsonElementContext {
None,
Object,
Array,
Closed
}
}