什么是在XML文件中找到最大属性的最佳表现方式?

时间:2015-04-24 06:14:07

标签: c# .net xml xpath

我应该将文件加载为XmlDocumentXDocument,使用Xml-to-LINQ? 或者是XPath查询的方法? 这通常是我的XML看起来如何(虽然更多的条目):

<books>
 <book Date="2015/09/09 12:13:58">
   ...
 <book Date="2014/04/28 22:13:58">
</books>

1 个答案:

答案 0 :(得分:1)

您可以在此处使用Stopwatch课程。

var sw = new Stopwatch();
sw.Start();
// Implementation to find max attribute here
sw.Stop();
Console.WriteLine(sw.Elapsed);

然后你会发现哪个实现最快。