Unidecode.NET icon indicating copy to clipboard operation
Unidecode.NET copied to clipboard

ASCII transliterations of Unicode text

Results 2 Unidecode.NET issues
Sort by recently updated
recently updated
newest added

Created a dotnet 5 project with the nuget reference, the application consumed **70MiB** RSS memory. ```csharp static async Task Main(string[] args) { while (true) { Console.WriteLine(Guid.NewGuid().ToString().Unidecode()); await Task.Delay(TimeSpan.FromSeconds(1)); } }...

`char.MaxValue` in C# is 65535, so `var high = c >> 8;` in source code cannot exceed 255, while character file has values ranging from 468 to 497. It is...