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
Hello,
In the following code ChangeType.Modified is not working. When there is a change within a line, it's detected as deleted and added and is counted as two changes instead of one. Could you please provide more info about why the ChangeType.Modified is not working and how to fix it? Thank you in advance
public static int CompareTwoNCFiles(string expectedResultFile, string newGeneratedFile, string comparisonFile)
{
StringBuilder sb = new StringBuilder();
var d = new Differ();
var builder = new InlineDiffBuilder(d);
var result = builder.BuildDiffModel(expectedResultFile, newGeneratedFile, ignoreWhitespace: true);
int countOfChanges = 0;
List<string> exceptions = new List<string>
{
"PPF VERSION",
"POST VERSION",
"PROJECT NAME",
"PROGRAM DATE",
"UNIQUEJOBID"
};
foreach (var line in result.Lines)
{
if (exceptions.Any(e => line.Text.Contains(e)))
continue;
switch (line.Type)
{
case ChangeType.Inserted:
sb.Append("+ ");
countOfChanges++;
break;
case ChangeType.Deleted:
sb.Append("- ");
countOfChanges++;
break;
case ChangeType.Modified: // Modified is not working with the current implementation
sb.Append("* ");
countOfChanges++;
break;
case ChangeType.Imaginary:
sb.Append("? ");
break;
case ChangeType.Unchanged:
sb.Append(" ");
break;
}
sb.Append(line.Text + "\n");
}
File.WriteAllText(comparisonFile, sb.ToString());
return countOfChanges;
}
The text was updated successfully, but these errors were encountered:
The pre-defined InlineDiffBuilder doesn't do sub-diffing results. The SideBySideDiffBuilder does. You can use that one to see if the results are what you expect.
Hello,
In the following code ChangeType.Modified is not working. When there is a change within a line, it's detected as deleted and added and is counted as two changes instead of one. Could you please provide more info about why the ChangeType.Modified is not working and how to fix it? Thank you in advance
public static int CompareTwoNCFiles(string expectedResultFile, string newGeneratedFile, string comparisonFile)
{
The text was updated successfully, but these errors were encountered: