Halil Durmus
Halil Durmus
Thanks, that's great! This will make using WinRT APIs much easier for consumers.
> Does it make sense for this work to be completed first ({cough} @dcharkes 🤣) , and then take another look at our memory management strategy? Yeah, it makes sense...
Great, thanks!
I'm almost done adding support for asynchronous APIs (need to update the generator to project these APIs as `Future` and write some tests). It should be ready for review in...
I found another naming conflict in the [DecimalFormatter](https://docs.microsoft.com/en-us/uwp/api/windows.globalization.numberformatting.decimalformatter?view=winrt-22621) class. `DecimalFormatter` inherits from [INumberFormatter](https://docs.microsoft.com/en-us/uwp/api/windows.globalization.numberformatting.inumberformatter?view=winrt-22621) and [INumberFormatter2](https://docs.microsoft.com/en-us/uwp/api/windows.globalization.numberformatting.inumberformatter2?view=winrt-22621) interfaces. `INumberFormatter` has overloaded `Format` methods to format several data types whereas `INumberFormatter2` has distinct...
Yeah, I've been observing this behavior for a while. It seems that it always happens after this test: https://github.com/timsneath/win32/blob/f63ecce439a8401d1bb326601c57584d77aa6c9d/test/com_network_test.dart#L28-L32 Since it's rare, it's really hard to replicate. I might look...
Sadly, I couldn't reproduce it locally.
I was thinking of writing a function that returns a String like `IMap
I won't know until I dig deeper into this tomorrow. Hopefully, I won't need to decompose it again.
@liamappelbe I wanted to use the `runOnPlatformThread` function but it appears to be not defined. I can see the `platform_isolate.dart` file defined in the `dart:ui` library:  However,...