You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When writing millions of cells to a sheet the memory usage is very high.
Describe the solution you'd like
Currently CellValue converts all values added to strings.
For example:
public CellValue(int value)
: this(value.ToString(CultureInfo.InvariantCulture))
{
}
Would it not make more sense to add (keep) the int (or whatever native type is being added) and write that to the XmlWriter when serializing the data to reduce the memory footprint?