StrToTime problem

 
GIVEN:
Computer's Time is 28 Feb 2007, 22:xx (synchronized to a world time)
Server's Time is same
GMT+0 is already 1 Mar 2007, 03:xx

What I have was something like this:

string goTime = "22:30";
int _goTime = StrToTime(goTime);



What will _goTime be?

My code is giving out _goTime = Mar1 22:30 instead of my desired Feb 28 22:30

Is it because that StrToTime takes in the Date of GMT+0 being Mar 1 already as again Feb 28 - the date of my computer?


Reason: