DateTime.ParseExact(InputDate, “dd.MM.yyyy”, nothing)
Can anyone describe how does the parse exact method work in this case- what is the stuff in brackets?
1 Like
Welcome to the uipath community.
ParseExact method will allow you to specify the exact format of your date string to use for parsing. It is good to use this if your string is always in the same format. The format of the string representation must match the specified format exactly.
5 Likes