获取类中每个值的属性值类型

时间:2012-07-31 19:42:58

标签: c# reflection

如何获取类中每个属性的属性值类型?

this.GetType().GetProperties().ToList().ForEach(p => {
    switch(typeof(p.GetValue(this, null))) {
        case float:
            ...
            break;
        case string:
            ...
            break;
    }
});

这会产生错误Cannot resolve symbol p

解决方案:我最终选择了LINQ to SQL。只是更干净,更容易交易:)。谢谢乔恩

2 个答案:

答案 0 :(得分:1)

我不能解决这个问题 - 我明白了:

Test.cs(12,29): error CS1026: ) expected
Test.cs(12,42): error CS1514: { expected
Test.cs(12,42): error CS1525: Invalid expression term ')'
Test.cs(12,44): error CS1002: ; expected
Test.cs(13,9): error CS1525: Invalid expression term 'case'
Test.cs(13,19): error CS1001: Identifier expected
Test.cs(13,19): error CS1525: Invalid expression term ':'
Test.cs(13,20): error CS1002: ; expected
Test.cs(15,9): error CS1525: Invalid expression term 'case'
Test.cs(15,20): error CS1001: Identifier expected
Test.cs(15,20): error CS1525: Invalid expression term ':'
Test.cs(15,21): error CS1002: ; expected

您无法启用类型。一般情况下使用ForEach就好了。

示例代码:

using System;
using System.Linq;

class Test
{
    public string Foo { get; set; }    
    public int Bar { get; set; }

    public void DumpProperties()
    {
        this.GetType().GetProperties().ToList()
            .ForEach(p => Console.WriteLine("{0}: {1}", p.Name,
                                            p.GetValue(this, null)));
    }

    static void Main()
    {
        new Test { Foo = "Hi", Bar = 20 }.DumpProperties();
    }
}

现在我承认我一般不会在这里使用ForEach - 我只是使用foreach循环:

foreach (var property in GetType().GetProperties())
{
    // Use property
}

就我个人而言,我认为它更干净,阅读更简单,也更容易调试。

答案 1 :(得分:1)

  1. 您无法在switch上使用Type - 它没有值case的常量值。
  2. 如果您仍然需要switch,并且您正在使用众所周知的一组类型(即系统类型),则可以使用p.PropertyType.GetTypeCode()返回enum