Thundax.DuplicateCheckerLib 1.0.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Thundax.DuplicateCheckerLib --version 1.0.0
NuGet\Install-Package Thundax.DuplicateCheckerLib -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Thundax.DuplicateCheckerLib" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Thundax.DuplicateCheckerLib --version 1.0.0
#r "nuget: Thundax.DuplicateCheckerLib, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Thundax.DuplicateCheckerLib as a Cake Addin
#addin nuget:?package=Thundax.DuplicateCheckerLib&version=1.0.0

// Install Thundax.DuplicateCheckerLib as a Cake Tool
#tool nuget:?package=Thundax.DuplicateCheckerLib&version=1.0.0

Sample App:

static void Main(string[] args)
        {
            Stopwatch stopwatch = new Stopwatch();
            stopwatch.Start();
            Console.Write("Calculating....");

            List<Item> items = new List<Item> {
                new Item { Id = 1, Name = "aaa" },
                new Item { Id = 2, Name = "aab" },
                new Item { Id = 3, Name = "aba" },
                new Item { Id = 4, Name = "aba" }
            };

            //Test using the new library
            Processor p = new Processor(items);
            p.FindDuplicates();
            Console.WriteLine("");
            Console.WriteLine("Duplicates");
            foreach (var value in p.exact)
            {
                Console.WriteLine($"{value.ToString()}");
            }
            Console.WriteLine("");
            Console.WriteLine("Close Fit");
            foreach (var value in p.closeFit)
            {
                Console.WriteLine($"{value.ToString()}");
            }
            Console.WriteLine("");
            Console.WriteLine("Similar");
            foreach (var value in p.similar)
            {
                Console.WriteLine($"{value.ToString()}");
            }
            stopwatch.Stop();
            Console.WriteLine("Time elapsed: {0}", stopwatch.Elapsed);
            Console.ReadKey();
        }

This will output the following:

Calculating....
Duplicates
aba, aba, 0, exact

Close Fit

Similar
aaa, aab, 1, similar
aaa, aba, 1, similar
aaa, aba, 1, similar
Time elapsed: 00:00:00.0037114

Compiled for .net 4.7

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated