Источник:
http://alexvoy.blogspot.com/2014/10/...formation.html
==============
Код:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Xml;
using Microsoft.Dynamics.IntegrationFramework.Transform;
using tmxEDITransformsX12.SharedXSD;
using tmxEDITransformsX12.Transform820XSD;
namespace TransformTest
{
class Program
{
static void Main(string[] args)
{
FileStream input = new FileStream("C:\\Test.edi", FileMode.Open);
FileStream output = new FileStream("C:\\Output.xml", FileMode.OpenOrCreate);
tmxEDITransformsX12.Transform820 transform = new tmxEDITransformsX12.Transform820();
transform.Transform(input, output, "");
}
}
}
Источник:
http://alexvoy.blogspot.com/2014/10/...formation.html