码迷,mamicode.com
首页 > Windows程序 > 详细

C# 泛型 无法将类型xx隐式转换为“T”

时间:2017-05-18 01:25:53      阅读:638      评论:0      收藏:0      [点我收藏+]

标签:pre   无法   http   row   except   不能   str   tail   type   

原文:C# 泛型 无法将类型xx隐式转换为“T”

直接奖泛型转为T是不能转换的 要先转Object

例: 

 public static T GetValue<T>(string inValue)
        {
            if (typeof(T) == typeof(Bitmap))
            {
                return (T)(Object)new Bitmap(inValue);
            }
            else
            {
              //一般类型
                return (T)Convert.ChangeType(inValue, typeof(T));
            }
            throw new Exception("");
        }

  

C# 泛型 无法将类型xx隐式转换为“T”

标签:pre   无法   http   row   except   不能   str   tail   type   

原文地址:http://www.cnblogs.com/lonelyxmas/p/6869978.html

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