conversion of XML parser written in C++ using xerces library into a parter in c#
hi
i have a spercific parsen written for a specific file using xerces library.
now i want to parse the same file in c sharp
can i use the same code of c++ in c sharp.
or what can be done with minimum effort.
ankit
Re: conversion of XML parser written in C++ using xerces library into a parter in c#
You will probably have to use MSXML for C# instead of Xerces. They both implement SAX and DOM parsers which is used to parse your XML file. But ofcourse there are implementaion differences that need to be addressed.
So it will most likely take some effort.
Re: conversion of XML parser written in C++ using xerces library into a parter in c#
Try making it a COM object in a DLL, and then use it from C#.