##// END OF EJS Templates
Code review for RunnableComponent...
Code review for RunnableComponent Added StaApartment class based on System.Windows.Forms.Application message loop

File last commit:

r180:c32688129f14 ref20160224
r210:5dc21f6a3222 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
}
}