I have a calendar and a textbox that contains a time of day. I want to create a datetime that is the combination of the two. I know I can do it by looking at the hours and m
Using https://github.com/FluentDateTime/FluentDateTime
DateTime dateTime = DateTime.Now; DateTime combined = dateTime + 36.Hours(); Console.WriteLine(combined);