BlueRaja
BlueRaja
Seems to just crash for me when I try to use it.
I am on VS 2022 17.0.5 and the issue is happening for me on iOS. Disabling Hot Reload, as suggested in one of the above links, does not work :(...
On [this page](https://developercommunity.visualstudio.com/t/bug-in-visual-studio-2022-xamarin-signalr-method-n/1528510?from=email&viewtype=all#T-ND1652390) another user discovered that installing `System.Memory 4.5.2` via Nuget fixes this issue. The issue appears in `4.5.3`
Yes, but I'd recommend ember-cli-meta-tags. That addon uses this addon, but makes it easier/cleaner to inject JSONLD
Hmm. This is intentional behavior, as there's no good way to enumerate the queue in priority-order without copying into a new queue and calling `Dequeue` over and over. However, I...
> Quite sure I called your IPriorityQueue.First method `IPriorityQueue.First` is [a property](https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp/blob/master/Priority%20Queue/IPriorityQueue.cs#L47) so you'd need to call it without the parentheses. I named it `First` to keep it consistent with...
> targeting the runtimes specifically can, under some circumstances, enable the compiler to apply optimizations that only work for the particular version of .NET being targeted Do you have a...
Have you profiled this? My understanding is that `uint` is generally slower than `int` because the JIT isn't programmed to optimize it as aggressively _(because it's not a CLS-compliant type)_,...
@Bedivierre This [already exists](https://github.com/BlueRaja/High-Speed-Priority-Queue-for-C-Sharp/blob/master/Priority%20Queue/GenericPriorityQueue.cs#L13), and is what `SimplePriorityQueue` is built off of. Unfortunately it's ~10-15% slower than `FastPriorityQueue` in my pathfinding benchmarks because the JIT is not able to properly...
Looks like the author of the obfuscation software found a way to package all the map code into separate header files. I will look into parsing them as well.