15 lines
149 B
C#
15 lines
149 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Data
|
|
{
|
|
public interface IDataSerial
|
|
{
|
|
int Count { get; }
|
|
|
|
double? this[int index]
|
|
{
|
|
get;
|
|
}
|
|
}
|
|
}
|