How do you get the current time of day?

c#, datetime

Solution

`DateTime.Now.TimeOfDay` gives it to you as a `TimeSpan` (from midnight).

`DateTime.Now.ToString("h:mm:ss tt")` gives it to you as a string.

DateTime reference: https://msdn.microsoft.com/en-us/library/system.datetime

Problem

How do you get the current time (not date AND time)? Example: 5:42:12 PM

Original source