我想遍历C#中的内置类型(bool,char,sbyte,byte,short,ushort等)。

怎么做?

foreach(var x in GetBuiltInTypes())
{
//do something on x
}

最佳答案

System.TypeCode是我能想到的最接近的东西。

foreach(TypeCode t in Enum.GetValues(typeof(TypeCode)))
{
    // do something interesting with the value...
}

09-07 00:31