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
System Information (please complete the following information):
OS & Version: Windows 10
Microsoft.Data.Analysis: 0.22.0
.NET Version: Net 6
Describe the bug
When using the SaveCsv method and passing in a CultureInfo object with the date format set (e.g. yyyy-MM-dd HH:mm:ss) the CSV file is saved with what looks to be the system settings, rendering the CultureInfo parameter useless.
Expected behavior
DateTime values saved in the yyyy-MM-dd HH:mm:ss format.
Observed behavior*
DateTime values saved as d/MM/yyyy h:mm tt which is the ShortDatePattern and ShortTimePattern for the CultureInfo.CurrentCulture, thereby ignoring the passed in values.
The text was updated successfully, but these errors were encountered:
System Information (please complete the following information):
Describe the bug
When using the SaveCsv method and passing in a CultureInfo object with the date format set (e.g. yyyy-MM-dd HH:mm:ss) the CSV file is saved with what looks to be the system settings, rendering the CultureInfo parameter useless.
To Reproduce
Expected behavior
DateTime values saved in the
yyyy-MM-dd HH:mm:ss
format.Observed behavior*
DateTime values saved as
d/MM/yyyy h:mm tt
which is theShortDatePattern
andShortTimePattern
for theCultureInfo.CurrentCulture
, thereby ignoring the passed in values.The text was updated successfully, but these errors were encountered: