Hi! In my application, I save DateTime to a text file and then periodically read it. However, when I trying to parse a date saved using standard formatting, the operation fails:
var test = DateTime.UtcNow().ToString(); // 07/27/2025 14:33:00
var isParsed = DateTime.TryParse(test, out var date); // isParsed = false
I tried to find bug in the nanoFramework source code in order to make a PR with corrections, but apparently the required functionality is implemented natively in C++, and my knowledge of this language is not enough to create PR and support it until the merge.
Well, I looked in the C++ source code to see what date formats it can recognize, and now I will convert my date to one of these formats, but I would really appreciate if someone could fix this behavior in the future. Anyway, I thought I'd let you know that this problem exists.
P.S. Device: ESP32 WROOM (rev 3), latest firmware.