How do you get the current time (not date AND time)?
Example: 5:42:12 PM
To calculate the current datetime:
DateTime theDate = DateTime.UtcNow; string custom = theDate.ToString("d"); MessageBox.Show(custom);