This:
bool ret = DateTime.TryParse("Sunday 11 November", out date);
fails to parse the date string? Why?
I realize the string is an incomplete date, but why can't the framework handle it? Does the framework always try to return a legitimate date? Because if so, that would explain it (Sunday 11th November 2014 is not a valid date)
It's easy enough to verify, just change the date to a valid one (Sunday 9 November), and guess what, it works. You will also see that the year is set to 2014.
So yes, it appears that if the date is not valid, parsing will fail.