.NET中的这种类型是什么?我正在使用反射来获取所有类的列表,这一个出现了.
它是什么?它从何而来?DisplayClass1的名称是如何选择的?我搜索来源并没有看到任何东西.什么<>意思?什么c__意思?有参考吗?

我正在反思的一个集会中有一节课:
public class Example
{
public List<int> things;
}
Run Code Online (Sandbox Code Playgroud)
当反射装配和抓取类型时.名称:
foreach(var type in typeof(Example).Assembly.GetTypes())
var hold = type.Name;
Run Code Online (Sandbox Code Playgroud)
存储在变量hold中的只是通用括号<>,而type.FullName是Example+<>.到底是怎么回事?这适用于程序集中的每个其他类.这个类确实有两个部分文件,但它们都没有定义为通用文件.