You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to have the possibility to have IEnumerables of deletedLines and addedLines in ContentChanges these would contain an instance of the following struct for each line containing the line number and the added or deleted content on that line.
struct Line {
public int LineNumber { get; }
public string Content { get; }
}
This modification would make it easier to navigate through the compare different states of files. Instead of having to parse the patch