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
thrownewInvalidOperationException($"Could not find DiffPlex.ConsoleRunner.dll in any of the expected locations.\nBase directory: {baseDir}\nSearched paths:\n{searchedPaths}");
Copy file name to clipboardExpand all lines: README.md
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -174,6 +174,64 @@ Example output:
174
174
Line 4
175
175
```
176
176
177
+
## IThreeWayDiffer Interface
178
+
179
+
The `IThreeWayDiffer` interface provides functionality for three-way diffing and merging, which is essential for merge operations in version control systems or when comparing three versions of text.
180
+
181
+
```csharp
182
+
/// <summary>
183
+
/// Responsible for generating three-way differences and merges between texts
184
+
/// </summary>
185
+
publicinterfaceIThreeWayDiffer
186
+
{
187
+
/// <summary>
188
+
/// Creates a three-way diff by comparing base, old, and new text line by line.
0 commit comments