[.NET] Avoid heap alloc when using StringNames as key in a Dictionary
@@ -161,7 +161,7 @@ namespace Godot
public override int GetHashCode()
{
- return NativeValue.GetHashCode();
+ return NativeValue.DangerousSelfRef.GetHashCode();
}