Minute-func
Returns the minutes as an integer, ranging from 0 to 59.
See this note.
int Minute(double d)
d
If input is a valid Julian-date value, return the integer value of minute, from 0 to 59.
If input is not a valid Julian-date value, return -1.
int aa = Minute(0.6997854); aa = ;//Should return the minute of this time, 47.
int bb = Minute(2454827.5982639); bb = ; //Should return the minute of this time, 21.
Year, Month, Day, Hour, Second, Now