.NET Implementations of Trie Data Structures for Substring Search, Auto-completion and Intelli-sense. Includes: patricia trie, suffix trie and a trie implementation using Ukkonen's algorithm.
I'm using this library in a .NET Core project so I added .NET Standard 2.0 support. I set it to target both Standard 2.0 and Framework 4.6.1 so (in theory) it shouldn't cause problems for existing users. I updated the version number to 1.0.4 because the new .csproj format doesn't seem to support the 1.0.3.* syntax.
.NET Standard 2.0 is the earliest version to support string.Intern so I couldn't use any 1.x version.
I'm using this library in a .NET Core project so I added .NET Standard 2.0 support. I set it to target both Standard 2.0 and Framework 4.6.1 so (in theory) it shouldn't cause problems for existing users. I updated the version number to 1.0.4 because the new .csproj format doesn't seem to support the 1.0.3.* syntax.
.NET Standard 2.0 is the earliest version to support string.Intern so I couldn't use any 1.x version.
Nice library by the way 😀