Aqueduct.SitecoreLib.DataAccess.ValueResolvers.NullableResolver.GetDateTimeValue C# (CSharp) Method

GetDateTimeValue() private static method

private static GetDateTimeValue ( string value ) : object
value string
return object
        private static object GetDateTimeValue (string value)
        {
            if (DateUtil.IsIsoDate(value))
                return DateUtil.IsoDateToDateTime (value);
            return null;
        }