Tom Edwards
Tom Edwards
@MrJul the requested changes have been made.
I removed a conflicting commit which edited Avalonia.Desktop.slnf and rebased.
You can create a byte array containing the data you need like this: ```csharp var bytes = BitConverter.GetBytes(Environment.ProcessId).Concat(BitConverter.GetBytes(GCHandle.ToIntPtr(handle))).ToArray(); ``` Then read it back like this: ```csharp if (BitConverter.ToInt32(bytes, 0) !=...
It's counter-intuitive that `CustomDataTransfer` implements an interface but does nothing at all with any of its properties or methods. An `IDataTransfer` which provided no formats or items sounds like it...
[Sounds like the same issue as described in this comment.](https://github.com/AvaloniaUI/Avalonia/issues/13230#issuecomment-1774050018)
> My bad, I should've run all tests in RELEASE mode. Nonetheless, this change may still be worth it for speeding up debug builds :), also the other issues are...