How to disable or prevent automatic datetime conversion when JArray.parse?
JArray ja = JArray.parse(fromString); --> I didn't find the option in JsonLoadSettings
disable the automatic converstion.
When running it in Postman, it works properly.
[
{
"startDate": "2022-10-03T22:03:15+00:00",
"endDate": "2022-10-03T22:03:15+00:00"
}
]
but when running in my C# code, it converted to UTC+0
how to keep the string with datetime value as it is?