Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

xamarin 12 hrs time format tt

public static class MyExtensionClass
{
    public static string ToFormat12h(this DateTime dt)
    {
        return dt.ToString("yyyy/MM/dd, hh:mm:ss tt");
    }

    public static string ToFormat24h(this DateTime dt)
    {
        return dt.ToString("yyyy/MM/dd, HH:mm:ss");
    }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #xamarin #hrs #time #format #tt
ADD COMMENT
Topic
Name
3+7 =