using System; namespace CPF.ReoGrid.Data { public interface IDataSerial { int Count { get; } double? this[int index] { get; } } }