Aqueduct.SitecoreLib.DataAccess.ValueResolvers.NullableResolver.GetDateTimeValue C# (CSharp) 메소드

GetDateTimeValue() 개인적인 정적인 메소드

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