Answers for "c# datetime add duration"

C#
1

c# add time to datetime

DateTime date; // The input time
date.AddSeconds(timeInSeconds);
date.AddMinutes(timeInSeconds);
// etc etc
Posted by: Guest on October-16-2021

C# Answers by Framework

Browse Popular Code Answers by Language