English 中文(简体)
是否有办法获得一份通用清单中储存的物体类型?
原标题:Is there a way to get the type of the objects stored in a generic list?

考虑到一个通用的类别清单:<代码>List<T>,我如何找到哪类<代码>。

如果名单有人居住,我可以采用listInstance[0].GetType(),但这似乎只是一种bit。

<><>Edit>:

在此情况下,我想用基于物体特性的栏目填入一个数据表。 如果物体财产是通用清单,我想在清单所储存的物体的每一财产中增加一栏。 我将数据结构固定在后面,以便并入数据Row。

我不想使用清单中的第一个物体的类型,是因为没有保证每个案件都有人种。 一些意愿和一些胜利,但我仍需要今后的所有一栏。

最佳回答

你可以尝试

typeof(List<T>).GetGenericArguments()[0]

这种做法是空洞的,而你的说法却并非如此。

最新资料:

案件使用

instance.GetType().GetGenericArguments()[0]
问题回答

为什么这种 ha笑? 根本不是 ha。 这就是为什么<代码>GetType()方法的退出。 获取物体类型。

You can use

 myList.GetType().GetGenericArguments()

这样一来,物体的申报中列出了各种类型。

令人不安的是,如果名单有人居住,你就得不到答复。

你们需要对照:

List<int> mylist = new List<int>();
Type listType = mylist.GetType();
Type genericType = listType.GetGenericArguments()[0];

你说过的话。 这不是 ha。

你还可以把GetType(GetType)直接列入你的名单,并利用它来研究其T类。

您也可以做以下工作:listInstance[0] is SomeTypeIExpect 如果您期望某种类型,并由于某种原因想做一些事情的话,则该编号为

你们应该能够使用类型的参数,以便你能够使用以下类型:

void ProcessList<T>( List<T> listInstance)
{
    Type type = typeof(T);
}




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签