Is there a diff-like Method available in the .NET Framework?

  • Thread starter Thread starter Michel Bretschneider
  • Start date Start date
M

Michel Bretschneider

Hi,

I want to compare 2 text-files (e.g. .ini, .cnf, ...) and process them,
depending on their differences, like

strdiff = dotnet.diff(stream1, stream2);

So is there a build-in function to do this?

Thanks
Michel
 
Michel said:
I want to compare 2 text-files (e.g. .ini, .cnf, ...) and process them,
depending on their differences, like

strdiff = dotnet.diff(stream1, stream2);

So is there a build-in function to do this?
Short answer: no.

There are plenty of free and OSS libraries for .NET that do this, though. A
Google query for "diff .net" turns up quite a bit.
 
Jeroen said:
Short answer: no.

so i guessed
There are plenty of free and OSS libraries for .NET that do this,
though. A Google query for "diff .net" turns up quite a bit.

I should have use the keyword "algo" before, since now the results look
suitable...

Thank You

Michel
 
Back
Top