I need to create a variable that contains time in the format hh:mm, how shall I do that?
DateTime currentTime = "00:00";
doesn’t seem to do the trick. I need to add hours/minutes in a loop to that variable and keep the format “hh:mm”. How is that done?
/M
Probably use
TimeSpanfor that?