Little Questions for the Bored: DateTime.Parse

This will be the first post in the series "Little Questions for the Bored". I want to see the answers to the questions in the comments. Obviously, if you're going to be a moron and copy and paste the answer straight from Google, you'll be banned and signed up for a 1-way ticket to hell, care of me. Heh.

On to the question:

DateTime dt = DateTime.Parse("01/02/2007");

What is the value of dt.Day?
What is the value of dt.Month?

Why is it not good to use the above DateTime.Parse() method like it is shown?