码迷,mamicode.com
首页 > 编程语言 > 详细

C#取数组单个元素的类型

时间:2015-02-24 19:50:28      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

去bing上查了一下,果然有和我一样蛋疼的朋友,解决方法如下:

 

public Type GetArrayElementType(Type t)

{

string tName = t.FullName.Replace("[]", string.Empty);

Type elType = t.Assembly.GetType(typeName);

return elType;

}

 

 

我加了条件判断,小改了一下:

public static class TypeExMothod
{
    public static Type GetArrayElementType(this Type t)
    {
        if (!t.IsArray) return null;

        string tName = t.FullName.Replace("[]", string.Empty);

        Type elType = t.Assembly.GetType(tName);

        return elType;
    }
}

 

C#取数组单个元素的类型

标签:

原文地址:http://www.cnblogs.com/hont/p/4298887.html

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