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; } }