我正在尝试列出C#类中使用的所有系统类型。例如,
class Program
{
static void Main(string[] args)
{
int i = 0;
Console.WriteLine(i.ToString());
}
private void SomeMethod(float parm1, double param2)
{
Assembly assembly = Assembly.LoadFrom(@"AssemblyName");
}
}
我想在此列出,
- 的Int32
- 控制台
- 空隙
- 装配
- 浮
- 双
- 字符串
醇>
怎么做?
答案 0 :(得分:-3)
查看How to iterate through the built-in types in C#?
typeof(int).Assembly.GetTypes().Where(t => t.IsPrimitive);