I kept dateTime in C# in the form of string
string result =DateTime.Now.ToString("yyyyMMddHHmmss");
The result is: 20201110011515
In ts:
date:string = 20201110011515
I want to convert it to Date of ts.
new Date(Tue Nov 10 2020 01:15:15 GMT+0200)
Thank you for any help.
"yyyyMMddHHmmss"over"o"?