Fons Sonnemans
Fons Sonnemans
I just found this [blog ](https://www.telerik.com/blogs/blazor-enhanced-navigation-fully-explained) in which it is explained how to disable the enhanced navigation. Globally using the solution @AndrewTriesToCode mention but also locally. The following examples disable...
I found a solution which uses the new `UnsafeAccessor` attribute of .NET 8. The GetOrAddInterpolated() extension method on StringPool uses the ToSpanAndClear() method which call the UnsafeAccessor methods Text and...
This shows again how difficult it is to write thread-safe code. Thank you both for warning me. I rewrote the solution to this: ```cs using CommunityToolkit.HighPerformance.Buffers; using System.Runtime.CompilerServices; Console.WriteLine(StringPool.Shared.GetOrAddInterpolated($"Hello, World!...
I don't think it can be added to the Toolkit. The Toolkit is compiled into a .NET Standard library. I used .NET8 specific code (`UnsafeAccessor`) which does not work in...
I love the new T4 templates. I have used it to create [C# 11 required properties](https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-11#required-members). This is my line 104 of the `EntityType.t4` ```cs public { get; set; }...
Are you saying that the Console.Write() is free? Can't imagine that.
Forgot to add the screenshot from the SampleApp. You can test it using the 'Add', 'Delete', 'Append', 'Move Available/Selected Up/Down/To First/To Last', 'What can I say' speech commands. 
I have added an IsEnabled property on the VoiceCommand trigger. In the SamplePage I have added a ToggleSwitch 'Voice'. If it is Off the buttons and listbox commands are not...
> @sonnemaf seems like the app is breaking when I attempt to open it or try to select the Add button in the app. You are right. The app crashed...
@michael-hawker I have just pushed a new version with Xml comments and fixed StyleCop issues. I hope (expect) it will now pass.