Do you know of a strtotime equivalent in C#(.NET) even for other languages than English (i.e. Slovak version of 25th January is 25 Január).
Asked
Active
Viewed 4,460 times
2 Answers
4
There is no direct equivalent in c#. There is Date.Parse()
which converts a string to a Datetime
object. This combined with CultureInfo
class should achieve the desired affect.
See the answer at : strtotime equivalent in .NET