How do I add times in C#? For example:
Time = "14:20 pm" + "00:30 pm"
|
|
I have insufficient reputation to add a comment - What do you expect the answer to that to be? 00:30pm isn't even a valid time - it would be 00:30am or 12:30pm |
|||||||||||||||
|
|
Assuming you want to add 30 minutes to a given DateTime, you can use AddMinutes.
Another way of doing it:
|
||||
|
|
|
|||
|
|
|
You would want to convert both times into a TimeSpan objects. This will give you explicit access to the Hours/Minutes values of each time and you can add them together. See TimeSpan from MSDN. |
|||
|
Try this (although 0:30pm doesn't make sense):
Output (the value before the dot are days):
|
||||
|
|
|
You can't add those, just like you can't add "14:20PM" and the color red. You can add a time and a timespan (14:20PM + 30 minutes) or two timespans (2 hours+30 minutes). But you cannot add two times. To make this even clearer, consider what would happen if you could add two times: 14.20 + 00:30 (EST) = 23.20 + 09:30 (UTC) |
|||
|
|