In .NET, I need a way to compare two files. I thought of a class, which represents a diff:
public enum DiffEntryState { New, Removed, Changed }
There is no built-in functionality.
So you have to compare the files byte by byte or use a library that does this for you.