Files
WinFormDiApp/WinFormDi.BLI/IExcel.cs

12 lines
240 B
C#

namespace WinFormDiApp.BLR
{
public interface IExcel
{
int Columns { get; set; }
string DataType { get; set; }
int Rows { get; set; }
void Dispose();
string ReadCell(int i, int j);
}
}