i am really new to Json. I have a datetime (Extracted date) in an object and which has the following value
2018-10-10 10:50:00
I am using this specific function from Json.net
JsonConvert.SerializeObject(object)
The returned Json String has letter T in the extracted_date i.e.,
{
"extracted_date": "2018-10-10T10:50:00"
}
After research I discovered that it could be to do with ISO Format which Json.net converts the date to. How do I not include the letter in the extracted date? Or is it not possible?
I am using VB.Net and used the following code as per one of the comments and still have the same issue
JSONString = JsonConvert.SerializeObject(newJob, Formatting.Indented,
New JsonSerializerSettings With
{.DateFormatHandling = DateFormatHandling.IsoDateFormat})