Giter Club home page Giter Club logo

Comments (3)

mmanela avatar mmanela commented on July 17, 2024

It does support that. Let me show you some sample code. The below code will take the example you gave and print out two lines, the old and the new while highlighting any changes. I replace spaces with dots to make it easier to see.

Here is the output
image

Here is the code:

  private static void Main()
        {

            var diffBuilder = new SideBySideDiffBuilder(new Differ());
            var diff = diffBuilder.BuildDiffModel("This is text 1", "This is text       1", ignoreWhitespace: false);

            PrintDiffSide(diff.OldText);
            PrintDiffSide(diff.NewText);
        }

        private static void PrintDiffSide(DiffPaneModel diff)
        {   
            foreach (var line in diff.Lines)
            {
                foreach (var part in line.SubPieces)
                {
                    var partWithSpacesMadeVisible = part.Text.Replace(" ", "ยท");
                    switch (part.Type)
                    {
                        case ChangeType.Inserted:
                            Console.ForegroundColor = ConsoleColor.Green;
                            break;
                        case ChangeType.Deleted:
                            Console.ForegroundColor = ConsoleColor.Red;
                            break;
                        case ChangeType.Unchanged:
                            Console.ForegroundColor = ConsoleColor.White;
                            break;
                    }
                    Console.Write(partWithSpacesMadeVisible);
                }

            }
            Console.WriteLine();
        }

@lchthanhth615 let me know if you have any questions on this

from diffplex.

lchthanhth615 avatar lchthanhth615 commented on July 17, 2024

Thanks @mmanela for your response.
Not sure why, but I install the plugin from .NET Nugget Manager (DiffPlex.Wpf.1.3.1 and DiffPlex.1.7.1) and using Diff-viewer on WinForm. And I see it cannot show diff for that case:
image

It will work if we replace space to Dot like your example, but it's not make sense in my case.

Could you please help to check ?

from diffplex.

mmanela avatar mmanela commented on July 17, 2024

Most likely the WPF control is not exposing the setting to consider white space

from diffplex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.