1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-30 04:17:55 +02:00
bitwarden-mobile/src/App/Utilities/DateTimeConverter.cs

30 lines
891 B
C#
Raw Normal View History

2019-05-02 20:53:45 +02:00
using System;
using Xamarin.Forms;
namespace Bit.App.Utilities
{
public class DateTimeConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
if(targetType != typeof(string))
{
throw new InvalidOperationException("The target must be a string.");
}
if(value == null)
{
return string.Empty;
}
2019-05-14 15:01:07 +02:00
var d = ((DateTime)value).ToLocalTime();
2019-05-02 20:53:45 +02:00
return string.Format("{0} {1}", d.ToShortDateString(), d.ToShortTimeString());
}
public object ConvertBack(object value, Type targetType, object parameter,
System.Globalization.CultureInfo culture)
{
throw new NotSupportedException();
}
}
}