码迷,mamicode.com
首页 > 其他好文 > 详细

关于可空类型到基础类型的转换 问题

时间:2017-04-22 12:41:09      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:问题   new   als   under   hang   泛型类   ini   gety   ==   

将一个数据转换成一个属性的类型,属性可能为可空类型时,这时报以下错误:

从“System.String”到“System.Nullable`1[[System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]”的强制转换无效。

 

将changeType方法重新改造以下就可以解决问题了:

public static object SD_ChanageType(this object value, Type convertsionType)
{
//判断convertsionType类型是否为泛型,因为nullable是泛型类,
  if (convertsionType.IsGenericType &&
    //判断convertsionType是否为nullable泛型类
  convertsionType.GetGenericTypeDefinition().Equals(typeof(Nullable<>)))
{
       if (value == null || value.ToString().Length == 0)
  {
  return null;
  }

   //如果convertsionType为nullable类,声明一个NullableConverter类,该类提供从Nullable类到基础基元类型的转换
       NullableConverter nullableConverter = new NullableConverter(convertsionType);
    //将convertsionType转换为nullable对的基础基元类型
        convertsionType = nullableConverter.UnderlyingType;
}
      return Convert.ChangeType(value, convertsionType);
}

关于可空类型到基础类型的转换 问题

标签:问题   new   als   under   hang   泛型类   ini   gety   ==   

原文地址:http://www.cnblogs.com/shiwanghualuo/p/6747220.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!