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
I believe, this issue had to be raised at the other repository (https://github.com/ClosedXML/ClosedXML). Anyways, I've just tested with the newest ClosedXML and .Net 8.0 - the sample code works just fine.
With respect to the following line of code at https://docs.closedxml.io/en/latest/features/tables.html#table-name:
record Pastry(string Name, int Sales);
I'm getting the following error:
Replacing the above line of code with the following line of code:
public record struct Pastry(string Name, int Sales);
resolved the issue for me.
The text was updated successfully, but these errors were encountered: