概述
Nullable是asp.net2.0新增的类型,可以简单的说成是一个泛型结构,对于这种结果前面的章节中动态赋值的方法就不起作用啦。要首先判断他是否是泛型可空型。然后再取出他原始的类型进行赋值
代码如下:
System.Reflection.PropertyInfo propertyInfo = t.GetProperty((var as testTextBox).ID);
if (propertyInfo != null)
{
bool isNullableValueType = propertyInfo.PropertyType.IsGenericType && (propertyInfo.PropertyType.GetGenericTypeDefinition() == typeof(Nullable<>));
Type genericType = propertyInfo.PropertyType;
if (isNullableValueType)
genericType = propertyInfo.PropertyType.GetGenericArguments()[0];
string tempText = (var as testTextBox).Text;
if (!string.IsNullOrEmpty(tempText))
propertyInfo.SetValue(entity, Convert.ChangeType(tempText, genericType), null);
}
其中
IsGenericType 判断是否为泛型
GetGenericTypeDefinition() 取得泛型结构的定义
转载于:https://www.cnblogs.com/SoulStore/archive/2008/06/16/1222911.html
最后
以上就是拉长枫叶为你收集整理的ASP.NET偷懒大法六(可空类型的动态赋值)的全部内容,希望文章能够帮你解决ASP.NET偷懒大法六(可空类型的动态赋值)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复