有一个 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) 使用字段的对象类型并将其动态类型转换为必要的类型。但无论如何,如果我需要一些特定于对象的调用,我将不得不进行静态转换。
我很高兴阅读您的想法/建议