DarranRowe
DarranRowe
>I guess the other projects work too on your system using Win11? Yes.
Thinking about it for a little, have you tried referencing the Windows App SDK in a WinForms or WPF application and seeing if you have the same problem? Also, you...
I mean simply adding the NuGet package to a project and setting WindowsPackageType to None and maybe setting the Windows App SDK self contained setting too. The stuff that goes...
>"Unfortunately" this does not crash on my machine. Yes, this is unfortunate. You ruled out it being a platform invoke problem because it should be crashing in the packaged WinUI...
> > Thanks but your sample has the one big problem why i have to use PInvoke: Your sample uses string for the password and therefore the password is in...
I would be extremely surprised if that is true. Sure, C# strings are immutable, but that only means that the string object is read only while it is alive. This...
>If i remember correctly the runtime itself decides whether to intern strings and therefore keep them forever. The [supplemental documentation for String.Intern](https://learn.microsoft.com/en-us/dotnet/fundamentals/runtime-libraries/system-string-intern) paints a different picture. The runtime only automatically...
One important thing to point out as an interesting aside. Floating point numbers don't store exact values. This can be logically reasoned as how can you fit an infinite amount...
Because anything under the Windows namespace is a Windows feature, then I would think that it would be faster to obtain support elsewhere. This would be a Windows issue after...
For questions, the [Microsoft Q&A site](https://learn.microsoft.com/en-us/answers/) is the better option here. The [C#](https://learn.microsoft.com/en-us/answers/tags/309/csharp) and [Universal Windows Platform (UWP)](https://learn.microsoft.com/en-us/answers/tags/105/windows-uwp) tags would help round things down. For reporting bugs, you would have...