Changed reading strategy, uses interop instead of EPPlus

This commit is contained in:
2023-08-31 08:33:26 +02:00
parent aef30274b2
commit f56a4bca3e
5 changed files with 106 additions and 30 deletions

12
WinFormDi.BLI/IExcel.cs Normal file
View File

@ -0,0 +1,12 @@
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);
}
}