C# – How to get the current time of day

cdatetime

How do you get the current time (not date AND time)?

Example: 5:42:12 PM

Best Answer

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