Agribusiness.Import.Helpers.ExcelHelpers.ReadCell C# (CSharp) Method

ReadCell() public static method

public static ReadCell ( Row row, int index ) : string
row Row
index int
return string
        public static string ReadCell(Row row, int index)
        {
            var val = row.GetCell(index);

            return val != null ? val.ToString() : null;
        }