public static float GetNotNullFloat(this ExcelRange cell) { if (float.TryParse(cell.GetNotNullString(), out float notNullFloat)) { return(notNullFloat); } else { return(0f); } }