So i have this DateTime? and what i want to do is to obtain the hour but show it in 24 hours format. For example: If the hour is 2:20:23 p.m. i want to convert it to
You can get the desired result with the code below. Two'H' in HH is for 24-hour format.
HH
return fechaHora.Value.ToString("HH:mm");