This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using BenchmarkDotNet.Attributes; | |
using BenchmarkDotNet.Running; | |
/// <summary> | |
/// Refer to the README.MD for details about: | |
/// 1. description of each benchmark | |
/// 2. results | |
/// 3. analysis of the results | |
/// | |
/// </summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Main() | |
{ | |
var summary = BenchmarkRunner.Run<LinqToXmlXNameAtomizationBenchmark>(); | |
// xml test data | |
//<aw:Root xmlns:aw="http://www.adventure-works.com"> | |
// <aw:Data ID="1">4,100,000</aw:Data> | |
// <aw:Data ID="2">3,700,000</aw:Data> | |
// <aw:Data ID="3">1,150,000</aw:Data> | |
//</aw:Root> |