molesmoke

Results 39 comments of molesmoke

I'm also seeing this behavior. For me, it manifests in a winforms project when a form's localizable property is set to true. Please find a small test project attached that...

@jsuarezruiz Great work, love this project. Long may it continue!

Looks like the documentation might also be incorrect, unless the current behaviour is a bug: https://docs.microsoft.com/en-us/dotnet/maui/user-interface/pages/flyoutpage

I'm no F# expert, but should some of those "let" statements be "use"?

Pretty sure this is just a bug in the example, though arguably it should be possible to notice some error and throw an exception earlier. The dispose pattern deals with...

Again, I'm no F# expert, but I read that warning as the "new" operator should be used when directly invoking a constructor, not that the named constructor idiom should be...

A named constructor is a public static method used to instantiate an object... i.e. SKSurface.Create _is_ a named constructor. Upstream Skia surfaces themselves use named constructors too. I don't think...

I noticed the same behaviour on Windows, but SKBitmap I think is more useful for rendering to anyway. If immutability is OK then maybe you could change it to render...

I tried to add a custom entry point and config to specify the TFM explicitly, but got the same error: ``` public static class Program { sealed class CustomConfig :...