Exact Hours From Now

This Statement - Now.AddDays(2).ToString will give me the Date and time exactly 48 hours from Now.

How Do I print the Date and time Exactly 36 hours From Now Or Say 30 Hours from Now ?

Hi,

How about the following?

Now.AddHours(36).ToString()

Regards,

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.