summaryrefslogtreecommitdiff
path: root/ThirdParty/CsvHelper-master/docs-src/CsvHelper.DocsGenerator/XmlDocs.cs
blob: b1c9c8349b3593b46b7f71b22c3dbc385537f4fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Xml.Linq;

namespace CsvHelper.DocsGenerator
{
	public static class XmlDocs
	{
		private static readonly Lazy<XElement> lazy = new Lazy<XElement>(() => XElement.Load("CsvHelper.xml"));

		public static XElement XElement => lazy.Value;
	}
}