Hour from DateTime? in 24 hours format

Posted by rolando on Stack Overflow See other posts from Stack Overflow or by rolando
Published on 2010-06-11T14:34:43Z Indexed on 2010/06/11 14:43 UTC
Read the original article Hit count: 158

Filed under:
|

Hello to everyone, 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 14:20 and that's it.

I'm working with Visual C#. Any ideas please, thank you.

I have something like this

public static string FormatearHoraA24(DateTime? fechaHora)
    {
        if (!fechaHora.HasValue)
            return "";

        string retornar = "";
          //here goes what i need
    }

© Stack Overflow or respective owner

Related posts about c#

Related posts about datetime