##// END OF EJS Templates
Fixed InteractiveListener to support OLE and clipboard....
Fixed InteractiveListener to support OLE and clipboard. Safe.Dispose methods made more convinent

File last commit:

r180:c32688129f14 ref20160224
r215:fe5101083150 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
}
}