Hi guys,
Just have found a weird bug:
1. Create a workbook and a worksheet in it.
2. Set data type for entire column to Text.
3. This operation adds around 350Mb (on my x64 machine) to the process memory for EVERY column.
The code sample:
```
var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add("Sample Sheet");
// Adds around 350Mb
worksheet.Column(1).DataType = XLCellValues.Text;
// Adds ANOTHER 350Mb
worksheet.Column(2).DataType = XLCellValues.Text;
```
Just have found a weird bug:
1. Create a workbook and a worksheet in it.
2. Set data type for entire column to Text.
3. This operation adds around 350Mb (on my x64 machine) to the process memory for EVERY column.
The code sample:
```
var workbook = new XLWorkbook();
var worksheet = workbook.Worksheets.Add("Sample Sheet");
// Adds around 350Mb
worksheet.Column(1).DataType = XLCellValues.Text;
// Adds ANOTHER 350Mb
worksheet.Column(2).DataType = XLCellValues.Text;
```