How to parse edifact data to xml

Velmars

New member
Joined
Jan 21, 2022
Messages
1
Programming Experience
5-10
How can we parse the edifact string with plain c# code to xml data.
 
If there is no existing .NET types that you can use to parse the existing data then you will have to write code to do so yourself. That means gaining an understanding of the structure and then writing code to read text and parse out the parts you need. Once you have the data, you can then write it out to XML the same way you would for any data.
 
Back
Top Bottom