阅读 XML 到字典
Read XML to dictionary
我知道这个问题已经被问过很多次了,但尽管尝试了其他类似问题的一些建议,我还是没能解决我的问题。
现在我改问,希望得到答案。
我有这个 XMl 文件:
<?xml version="1.0" encoding="utf-8"?>
<WebCommands>
<WebCommand>
<FullCommand>@ 05c9fe42-8d89-401d-a9a5-2d82af58e16f This is a test from WebCommands!</FullCommand>
<TimeStamp>18.06.2015 02:56:22</TimeStamp>
</WebCommand>
</WebCommands>
我需要将 FullCommand 和 TimeStamp 添加到我的字典中
Dictionary<DateTime, string> commands = new Dictionary<DateTime, string>();
我如何:
1.将FullCommand和TimeStamp添加到字典中?
2. 将 TimeStamp 字符串转换为正确的 DateTime?
- Add the FullCommand and TimeStamp to the dictionary?
var commands = new Dictionary<DateTime, string>();
XDocument xDoc = XDocument.Load("filename.xml");
foreach (XElement xCommand in xDoc.Root.Elements())
{
commands.Add(
DateTime.Parse(xCommand.Element("TimeStamp").Value, CultureInfo.CurrentCulture),
xCommand.Element("FullCommand").Value);
}
- Convert the TimeStamp string into a proper DateTime
DateTime.Parse(xCommand.Element("TimeStamp").Value, CultureInfo.CurrentCulture)
解析为 DateTime
是 特定于文化的操作。确保使用正确的区域性以防 CultureInfo.CurrentCulture
不可行。
我知道这个问题已经被问过很多次了,但尽管尝试了其他类似问题的一些建议,我还是没能解决我的问题。
现在我改问,希望得到答案。
我有这个 XMl 文件:
<?xml version="1.0" encoding="utf-8"?>
<WebCommands>
<WebCommand>
<FullCommand>@ 05c9fe42-8d89-401d-a9a5-2d82af58e16f This is a test from WebCommands!</FullCommand>
<TimeStamp>18.06.2015 02:56:22</TimeStamp>
</WebCommand>
</WebCommands>
我需要将 FullCommand 和 TimeStamp 添加到我的字典中
Dictionary<DateTime, string> commands = new Dictionary<DateTime, string>();
我如何:
1.将FullCommand和TimeStamp添加到字典中?
2. 将 TimeStamp 字符串转换为正确的 DateTime?
- Add the FullCommand and TimeStamp to the dictionary?
var commands = new Dictionary<DateTime, string>();
XDocument xDoc = XDocument.Load("filename.xml");
foreach (XElement xCommand in xDoc.Root.Elements())
{
commands.Add(
DateTime.Parse(xCommand.Element("TimeStamp").Value, CultureInfo.CurrentCulture),
xCommand.Element("FullCommand").Value);
}
- Convert the TimeStamp string into a proper DateTime
DateTime.Parse(xCommand.Element("TimeStamp").Value, CultureInfo.CurrentCulture)
解析为 DateTime
是 特定于文化的操作。确保使用正确的区域性以防 CultureInfo.CurrentCulture
不可行。