我应该将文件加载为XmlDocument
,XDocument
,使用Xml-to-LINQ?
或者是XPath
查询的方法?
这通常是我的XML看起来如何(虽然更多的条目):
<books>
<book Date="2015/09/09 12:13:58">
...
<book Date="2014/04/28 22:13:58">
</books>
答案 0 :(得分:1)
您可以在此处使用Stopwatch
课程。
var sw = new Stopwatch();
sw.Start();
// Implementation to find max attribute here
sw.Stop();
Console.WriteLine(sw.Elapsed);
然后你会发现哪个实现最快。