Hour from DateTime? in 24 hours format

前端 未结 5 751
迷失自我
迷失自我 2020-12-01 03:57

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

5条回答
  •  再見小時候
    2020-12-01 04:36

    You can get the desired result with the code below. Two'H' in HH is for 24-hour format.

    return fechaHora.Value.ToString("HH:mm");
    

提交回复
热议问题