FileHelpers.ExcelNPOIStorage.ExcelNPOIStorage.ExcelNPOIStorage C# (CSharp) Method

ExcelNPOIStorage() public method

Create a new ExcelStorage to work with the specified type
public ExcelNPOIStorage ( Type recordType, string fileName, int startRow, int startCol ) : System
recordType System.Type The type of records.
fileName string The file path to work with.
startRow int The row of the first data cell. Begining in 1.
startCol int The column of the first data cell. Begining in 1.
return System
        public ExcelNPOIStorage(Type recordType, string fileName, int startRow, int startCol)
            : base(recordType, fileName, startRow, startCol)
        {
        }

Same methods

ExcelNPOIStorage::ExcelNPOIStorage ( Type recordType ) : System
ExcelNPOIStorage::ExcelNPOIStorage ( Type recordType, int startRow, int startCol ) : System