Files
WinFormDiApp/WinFormDi.BLI/IExcellent.cs

13 lines
297 B
C#

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