FileHelpers.ExcelNPOIStorage.ExcelNPOIStorage.CellAsString C# (CSharp) Méthode

CellAsString() private méthode

private CellAsString ( IRow row, int col ) : string
row IRow
col int
Résultat string
        private string CellAsString(IRow row, int col)
        {
            if (mSheet == null)
                return null;

            ICell cell = CellUtil.GetCell(row, col);
            return cell.ToString();
        }

Same methods

ExcelNPOIStorage::CellAsString ( object row, object col ) : string