[dotnet] sanitized pinvokes that use string#17143
Conversation
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
| } | ||
| } | ||
|
|
||
| static IntPtr dispatch_queue_create_wrapper (string label, IntPtr attr) |
There was a problem hiding this comment.
NBD, but I think this should work due to method overloading:
| static IntPtr dispatch_queue_create_wrapper (string label, IntPtr attr) | |
| static IntPtr dispatch_queue_create (string label, IntPtr attr) |
| return NativeHandle.Zero; | ||
|
|
||
| return CFStringCreateWithCharacters (IntPtr.Zero, value, value.Length); | ||
| using var valuePtr = new TransientString (value); |
There was a problem hiding this comment.
CFStringCreateWithCharacters takes a Unicode string:
| using var valuePtr = new TransientString (value); | |
| using var valuePtr = new TransientString (value, TransientString.Encoding.Unicode); |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
✅ API diff for current PR / commitLegacy Xamarin (No breaking changes)
NET (empty diffs)
✅ API diff vs stableLegacy Xamarin (No breaking changes).NET (No breaking changes)✅ Generator diffGenerator diff is empty Pipeline on Agent |
📚 [PR Build] Artifacts 📚Artifacts were not provided. Pipeline on Agent XAMBOT-1107.Monterey' |
💻 [PR Build] Tests on macOS M1 - Mac Big Sur (11.5) passed 💻✅ All tests on macOS M1 - Mac Big Sur (11.5) passed. Pipeline on Agent |
🚀 [CI Build] Test results 🚀Test results✅ All tests passed on VSTS: simulator tests. 🎉 All 223 tests passed 🎉 Tests counts✅ bcl: All 69 tests passed. Html Report (VSDrops) Download Pipeline on Agent |
sanitized the pinvokes that use string.
Note: I did not address the pinvokes that take callback functions - that will be addressed in a later PR.