public Cell(object value, string formatString) { _value = value; _format = new CellFormat(CellFormatType.General, formatString); }
public Cell(object value, CellFormat format) { _value = value; _format = format; }
public Cell(object value) { _value = value; _format = CellFormat.General; }