C # method for adding date and time,
It may be a bit confusing for people who are new to this industry and complicated to implement.
For example, the time is 14:46:30, and 56 seconds passed in the middle. It is required that the time format after 56 seconds is: year, month, day, hour, minute, second
The following describes the simplest method,
Model. calldate = msg. data [0]. calldate; // start connection time model. billsec_int = msg. data [0]. billsec_int; // call duration var a = DateTime. parse (model. calldate ). addSeconds (Convert. toInt32 (model. billsec_int); // the start time and call duration.
That is, you can directly use 14:46:30. AddSeconds (56.
The AddSeconds method adds the number of seconds. The final result is in the format of year, month, day, hour, minute, and second.
All of these methods are self-contained in MSDN. You can add them every minute or hour.