What’s wrong with a line like this? DateTime.Parse(myString)

Q

What’s wrong with a line like this? DateTime.Parse(myString)

✍: Guest

A

the result returned by this function is not assigned to anything, should be something like varx = DateTime.Parse(myString)

2014-02-28, 1785👍, 0💬