##// END OF EJS Templates
fixed JSONXmlReader disposing under ugly mono...
fixed JSONXmlReader disposing under ugly mono ObjectPool is made abstract

File last commit:

r76:c761fc982e1d v2
r85:abe260860bd6 v2
Show More
ICancellable.cs
10 lines | 186 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab {
public interface ICancellable {
void Cancel();
}
}