Ejemplo n.º 1
0
 ///<summary>
 /// Get a strongly type value from the cell
 ///</summary>
 ///<param name="sheet">Current worksheet</param>
 ///<param name="cellRow">Cell row</param>
 ///<param name="cellColumn">Cell column</param>
 ///<typeparam name="TValue">Type of value to expect</typeparam>
 ///<returns>The strongly type value</returns>
 public static TValue GetCellValue <TValue>(this ExcelWorksheet sheet, int cellRow, int cellColumn)
 {
     return(sheet.GetCellValue(cellRow, cellColumn, default(TValue)));
 }