Certainly there are multiple convert paths, e.g. from a String to a DateTime it could be
String -> DateTime directly via StringFormat
String -> long -> DateTime if the String is a Unix Epoch
The mechanism shall allow it try the next path if the current path conversion failed. To avoid performance issue the fallback shall only effective through specific API flag
Certainly there are multiple convert paths, e.g. from a
String
to aDateTime
it could beThe mechanism shall allow it try the next path if the current path conversion failed. To avoid performance issue the fallback shall only effective through specific API flag