using System.Collections; using System.Collections.Generic; namespace DPumpHydr.WinFrmUI.WenSkin.Json.Linq { /// /// Represents a collection of objects. /// /// The type of token public interface IJEnumerable : IEnumerable, IEnumerable where T : JToken { /// /// Gets the with the specified key. /// /// IJEnumerable this[object key] { get; } } }