How to Parse a string to DATE datatype using Managed C++
Managed C++/CLI
3
Posts
2
Posters
1
Views
1
Watching
-
I have to convert a string of format "2009/07/30" to DATE in managed C++. There is a parse method in DATE. But I don't know how to use that. Please help me with the format.
-
I have to convert a string of format "2009/07/30" to DATE in managed C++. There is a parse method in DATE. But I don't know how to use that. Please help me with the format.
-
DateTime myDate = DateTime::Parse("2009/07/30");
Don't be overcome by evil, but overcome evil with good
thanks