Hi,
I need to convert a date as follows please.

strPayDate = "31/01/2006";
DateTime dtPayDate = DateTime.Parse(strPayDate.ToString()); //returns "01/31/2006"

I would like to get dtPayDate which is of type DateTime:
dtPayDate = "31/01/2006"

p.s. i tried using ToShortDateString but this seems to return a string and not a date and so can not assignn it to DateTime dtPayDate

How is this possible please?
Thanks