0

有一个 XML 方案是这样说的:

<ExtraFields>
  <ExtraField Type="Int">
   <Key>Mileage</Key>
   <Value>500000 </Value>
  </ExtraField>
  <ExtraField Type="String">
   <Key>CarModel</Key>
   <Value>BMW</Value>
  </ExtraField>
  <ExtraField Type="Bool">
   <Key>HasAbs</Key>
   <Value>True</Value>
  </ExtraField>    
</ExtraFields>

我想将此信息存储在类中,并且我希望其字段为指定类型。我想到了一个通用的方法

     static class Consts
{
    public const string Int32Type = "int32";
    public const string StringType = "string";
    public const string BoolType = "bool";
}

public class ExtraFieldValue<TValue>
{
    public string Key;
    public TValue Value;public static ExtraFieldValue<TValue> CreateExtraField(string strType, string strValue, string strKey)
    {
        IDictionary<string, Func<string, object>> valueConvertors = new Dictionary<string, Func<string, object>> {
                  { Consts.Int32Type, value => Convert.ToInt32(value)},
                  { Consts.StringType, value => Convert.ToString(value)},
                  { Consts.BoolType, value => Convert.ToBoolean(value)}
        };

        if (!valueConvertors.ContainsKey(strType))
            return null;

        ExtraFieldValue<TValue> result = new ExtraFieldValue<TValue>
        {
            Key = strKey,
            Value = (TValue)valueConvertors[strType](strValue)
        };

        return result;
    }

}

但是这种方法的问题是我需要一个 ExtraFields 列表,并且它们中的每一个都可以在列表中具有不同的类型。

到目前为止,我只能想到两个选择:

1)为此字段使用动态关键字,但这种方法似乎有限制

2) 使用字段的对象类型并将其动态类型转换为必要的类型。但无论如何,如果我需要一些特定于对象的调用,我将不得不进行静态转换。

我很高兴阅读您的想法/建议

4

1 回答 1

1

只需使用名称/值集合。如果您在运行时甚至不知道属性名称,那么在运行时使用dynamic或动态构建类型对您没有帮助,因为您将无法编写访问这些属性的源代码。

因此,只需使用名称/值集合,例如实现IDictionary<string, object>.

于 2011-07-21T13:25:07.667 回答