How do you get the current time (not date AND time)?
Example: 5:42:12 PM
This can be a possible solution:
DateTime now = DateTime.Now; string time = now.ToString("T");