How would I convert this from js to C#. I’ve looked but cant find anything useful.
var endDate = new DateTime();
endDate.setDate(startDateTime.getDate() + days);
endDate.setHours(endDateTime.getHours(), endDateTime.getMinutes(), endDateTime.getSeconds());
Assuming that you don’t mind sub-second precision on
endDateTime, you could use:If you do mind, this should do the trick: