我写了一个返回
的方法List<KeyValuePair<CommandType, List<string>>>
CommandType
属于enum
public enum CommandType
{
Programmed,
Manual
}
我的问题是KeyValuePair
中的值有时是enum
,有时它是字符串列表,但我需要将所有KeyValuePair
保留在一个列表中。
目前,我将值作为keyvaluepair中的对象传递,当方法返回列表并根据键迭代它时,我将值转换回其原始类型。
有没有更好的方法来实现这个?
这是一个示例代码
public enum ProgrammedCommands
{
Sntp,
Snmp,
}
private List<KeyValuePair<CommandType, object>> GetCommandsFromTemplate(string[] templateLines)
{
var list = new List<KeyValuePair<CommandType, object>>();
if (templateLines != null)
for (int lineIndex = 0; lineIndex < templateLines.Length; lineIndex++)
{
if (templateLines[lineIndex].Contains("!*") && templateLines[lineIndex].Contains("*!"))
{
KeyValuePair<CommandType, object> ProgrammedSetting;
List<string> programmedCommandList;
if (templateLines[lineIndex].Contains("SNTP - SNTP Server Commands"))
{
ProgrammedSetting = new KeyValuePair<CommandType, object>(CommandType.Programmed, ProgrammedCommands.Sntp);
list.Add(ProgrammedSetting);
}
else if (templateLines[lineIndex].Contains("MANUAL"))
{
lineIndex++;
List<string> manual = new List<string>();
while (true)
{
if (lineIndex >= templateLines.Length)
break;
if (templateLines[lineIndex].Contains("!!["))
lineIndex++;
else if (templateLines[lineIndex].Contains("]!!"))
break;
else
{
manual.Add(templateLines[lineIndex]);
lineIndex++;
}
}
ProgrammedSetting = new KeyValuePair<CommandType, object>(CommandType.Manual, manual);
list.Add(ProgrammedSetting);
}
}
}
return list;
}
答案 0 :(得分:2)
如果您想为不同类型使用单个存储,因为值的类型只能在运行时确定,那么您应该使用object
类型来装箱值,然后当您需要使用时以类型化方式输入值,检查其类型并将其拆箱到所需类型并使用它。
因此,您可以根据您的要求使用其中一种数据结构:
Dictionary<CommandType, object>
←键应该是唯一的。List<KeyValuePair<CommandType, object>>
←对的关键字不需要是唯一的。 注意:您可能会想象创建公共基类BaseType
等解决方案,并从ListContainer
中派生出两个不同的EnumContainer
和BaseType
并在运行时创建ListContainer
和EnumContainer
并存储在Dictionary<CommandType, BaseType>
中。这样的结构可能只是可以帮助您将存储限制为所需类型而不是使用对象。