其他分享
首页 > 其他分享> > 反射赋值 解决类型转换异常的写法

反射赋值 解决类型转换异常的写法

作者:互联网

                 //反射进行赋值时 防止类型转换异常的标准写法
                            Type type = Nullable.GetUnderlyingType(propertyInfo.PropertyType); //返回可为空字段的类型
                            if (type!=null)
                            {
                                propertyInfo.SetValue(model,string.IsNullOrEmpty(newValue)? null:Convert.ChangeType(newValue,type),null);
                            }
                            else
                            {
                                propertyInfo.SetValue(model,string.IsNullOrEmpty(newValue)? null:Convert.ChangeType(newValue,propertyInfo.PropertyType),null);
                            }

其中 newValue 是要设置的值

标签:类型转换,Convert,type,propertyInfo,null,写法,newValue,赋值
来源: https://www.cnblogs.com/lipengxu/p/15957707.html