Преобразование из строки в дату и время C# ask question up vote
I am fetching some data from some API, the date am getting is as below: {dd/MM/yyyy hh:mm:ss} "6/15/2014 6:45:00" Is there anyway I can directly convert it to date time ? Please guide.. Thanks in advance.
Что я уже пробовал:
I tried .ToString(""), Convert.ToDateTime() and Parse/ExactPare but nothing work.