I asked a question here about the thing i'm trying to solve, an approach, i need to compare two xml files in C# (.NET) line by line, i need to highlight the differences between files.
The files are almost identical, like:
<note>
<to> Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
################
<note>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
The second note misses the
Is it appropriate to use File.ReadAllLines? I need to build the code on my own, not using pre-built tools, some help would be appreciated.
No comments:
Post a Comment