ushort?IConverter <ushort?> .GetValue(string text) { return(NullableHelper.GetValue <ushort>(text, this)); }
DateTime?IConverter <DateTime?> .GetValue(string text) { return(NullableHelper.GetValue <DateTime>(text, this)); }
byte?IConverter <byte?> .GetValue(string text) { return(NullableHelper.GetValue <byte>(text, this)); }
ulong?IConverter <ulong?> .GetValue(string text) { return(NullableHelper.GetValue <ulong>(text, this)); }
decimal?IConverter <decimal?> .GetValue(string text) { return(NullableHelper.GetValue <decimal>(text, this)); }
TimeSpan?IConverter <TimeSpan?> .GetValue(string text) { return(NullableHelper.GetValue <TimeSpan>(text, this)); }
Guid?IConverter <Guid?> .GetValue(string text) { return(NullableHelper.GetValue <Guid>(text, this)); }