海淀天下城电子沙盘单机版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.4 KiB

4 years ago
using MessagePack.Formatters;
using MessagePack.Internal;
using System;
namespace MessagePack.Resolvers
{
public sealed class NativeDateTimeResolver : IFormatterResolver
{
public static readonly IFormatterResolver Instance = new NativeDateTimeResolver();
NativeDateTimeResolver()
{
}
public IMessagePackFormatter<T> GetFormatter<T>()
{
return FormatterCache<T>.formatter;
}
static class FormatterCache<T>
{
public static readonly IMessagePackFormatter<T> formatter;
static FormatterCache()
{
formatter = (IMessagePackFormatter<T>)NativeDateTimeResolverGetFormatterHelper.GetFormatter(typeof(T));
}
}
}
}
namespace MessagePack.Internal
{
internal static class NativeDateTimeResolverGetFormatterHelper
{
internal static object GetFormatter(Type t)
{
if (t == typeof(DateTime))
{
return NativeDateTimeFormatter.Instance;
}
else if (t == typeof(DateTime?))
{
return new StaticNullableFormatter<DateTime>(NativeDateTimeFormatter.Instance);
}
else if (t == typeof(DateTime[]))
{
return NativeDateTimeArrayFormatter.Instance;
}
return null;
}
}
}