Пример #1
0
        public DateTime GetDateTime(string name)
        {
            object value = GetValue(name, typeof(System.DateTime));

            return(converter.ToDateTime(value));
        }
        public DateTime GetDateTime(string name)
        {
            var value = GetValue(name, typeof(DateTime));

            return(converter.ToDateTime(value));
        }
 public DateTime ToDateTime(object value)
 {
     return(_impl.ToDateTime(value));
 }