示例#1
0
        public DefaultValue(object value, Type systemType)
        {
            var result = ReflectionUtilities.ChangeValueTypeWithResult(value, systemType);

            this.Value = result.Value;
            this.IsSet = result.IsValid;
        }