You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
394 B

using System.IO;
using System.Text;
using System.Xml;
namespace tablegen2.logic
{
public static class TableExcelExportXml
{
public static void exportExcelFile(TableExcelData data, string filePath)
{
var doc = new XmlDocument();
var root = doc.CreateElement("root");
doc.AppendChild(root);
foreach (var row in data.Rows)