I am working on a test app for myself and I am reading some SQLite data from a db and displaying it. The dates in the db are in standard datetime format but I am using the ToText method with the FormatStyles to create more human readable data.
Is there an easy way to “undo” that formatting to recreate the original or a new datetime formatted string to then save back to the db?
I wasnt especially clear. Sorry. I have the date and time taken from a datetime formatted string which is broken into separate strings and formatted. I no longer have the original date object, just the formatted strings.
I was curious if, since they were formatted using the FormatStyles if there was a way to return then back to the original datetime format.