I want increase time to current time for example, I have the time of the problem and the expected time to complete them How can I add?
(DateTime.Now.ToShortDateString() +.......)
|
|
|
You can use other variable
|
|||
|
|
|
You can use the operators '+' '-' '+=' and '-=' on a DateTime with a TimeSpan argument
Furthermore you can use a set of "Add" methods
For a nice overview of even more DateTime manipulations see http://www.blackwasp.co.uk/CSharpDateManipulation.aspx |
|||
|
|