コード例 #1
0
ファイル: XmlExport.cs プロジェクト: 24/source_04
 public static void zXmlExport <T>(this IEnumerable <T> dataList, string file, XmlExportDefinition xmlDefinition = null, bool detail = false)
 {
     XmlExport <T> .Export(dataList, file, xmlDefinition, detail);
 }
コード例 #2
0
ファイル: XmlExport.cs プロジェクト: 24/source_04
        public static void Export(IEnumerable <T> dataList, string file, XmlExportDefinition xmlDefinition = null, bool detail = false)
        {
            XmlExport <T> xmlExport = new XmlExport <T>(xmlDefinition);

            xmlExport.Export(dataList, file, detail);
        }