I am retrieving data from an iSeries where there is a separate date and time fields. I want to join them into a DateTime field in my C# project. I don’t see a way to add just a time to a DateTime field. How would you suggest accomplishing this?
Share
How are they being stored? Assuming that the date portion is being stored as a
DateTimeof midnight of the day in question and the time is aTimeSpan, you can just add them.