How to hide Back Button in Maui 8 Appshell
Shell.NavBarIsVisible="False"
in App.xaml, appshell.xaml and i have tried doing it with code in appshell.xaml.cs
```c#
protected override void OnNavigating(ShellNavigatingEventArgs args)...Inheritance or composition
DTask
.
Because DTask
requires infrastructural support, you can't just await one inside a regular async method. To run them, providers must implement its infrastructure components (for storage access, serialization, etc.). One of these components is called DAsyncHost
and, as of today, is an abstract class: it exposes and implements some methods to interact with these durable tasks (StartAsync
, ResumeAsync
), but also defines several abstract callbacks that implementations must override. For example, OnDelayAsync
determines how to handle DTask.Delay
, OnSucceedAsync
defines what to do when a durable task completes. Link to the class: https://github.com/gianvitodifilippo/DTasks/blob/main/src/DTasks/Infrastructure/DAsyncHost.cs
I went with an abstract class so I could provide virtual methods with default implementations and add new features in the future without breaking existing implementations (thanks to virtuals). However, I'm not a big fan of abstract classes and I usually prefer composition over inheritance, and I’m starting to wonder if DAsyncHost
should have been a concrete class that could instead be injected into those classes that today are its child classes. I'm struggling now even more because I want to add a new overload of the StartAsync
method that allows callers to pass a context object that the host can access during the whole execution. To do so, I thought of adding a type parameter to the type (DAsyncHost<TContext>
) and a new StartAsync(TContext context, ...)
method, but this started to feel like a smell to me....✅ Beginner Projects
Is it possible to reverse a string letter by letter using only regular expression?
string
and StringBuilder
. Now onto Regex
and I'm trying to do everything which I do with string methods and StringBuilder methods by using Regex alone for learning purposes.
But reversing a string letter by letter seems pretty hard by just Regex.Replace(intialString, pattern, replacement)
I guess pattern can be:...requesting not working on windows 10 ONLY windows 11 works fine

✅ .NET not Working

ASP.NET MVC - need opinion for viewmodel properties
Physics
Step
method in a FixedUpdate method.
But as the documentation tells me of Jitter2 i need to impliment maxSteps....
Adding Python project to Solution in combination with Docker error
✅ Creating a single global object that can be accessed by other classes?
How to get .NET framework 4.8.1 installed on IIS Web Server running Windows Server 2019 via choco?
choco install netfx-4.8.1 --version 4.8.1.20250219
However, it always fails the installation.
It doesn't give me much to go on.
What do you recommend?...Set an environment variable as part of a Visual Studio multi-project startup config
Accessing data for multiple days from weather api
Blazor Cascading value null exception even though instance exists

✅ Looking for a ASP.NET developer
Updating SecurityStamp on Many users
Unit Testing in Minimal Apis
Maybe the case for object pooling?
Cmd File can´t run on Process.Start(Filename);