scheduler tasks with security options “Run whether user is logged on or not”.
We use the package <package id="TaskScheduler" version="2.12.2" targetFramework="net48" /> This is the code with three actions and its behavior: || | -------- | Task || | -------- | GUI || | -------- | Manually run…
Developer technologies | C#
.NET MAUI Android – HttpRequestException (UnknownHostException) – Unable to resolve host intermittently in production
Hello, I am using .NET MAUI (Android) with HttpClient This issue occurs in different scenarios. For example, one scenario is: StartPage → SplashActivity → MainActivity → Home → Atlas → Notification → Home (Card_Click) → after a few minutes, a…
Developer technologies | C#
.NET MAUI Navigation Not Working on iOS 26.2 / 26.3
I am currently using .NET MAUI with .NET 8, and the application uses AppShell for navigation. The app works correctly on iOS version 26.0 and below. However, on iOS versions 26.2 and 26.3, the application hangs after login and does not navigate to the…
Developer technologies | C#
Problems Connecting to Webservice Visual Studio 2026
Hello everyone and thanks for the help in advance. I am upgrading a project to VS 2026 that utilizes connected services but am running into problems. Here is the WSDL <?xml version="1.0" encoding="UTF-8"?> <definitions…
Developer technologies | C#
Debug with Chat Visual Studio 2026
Hi, I see that in version of Visual Studio 2026, there is Debug with Chat. Where I can use it in all projects types? Only on C# languages? In unit tests it works? Can you give how does it works behind the scene to understand how to work with it? What…
Developer technologies | C#
MSAL authentication_canceled exception in .NET MAUI even when using embedded webview
Hi, I am facing a recurring issue in a .NET MAUI Android application using MSAL 4.77.0 for Azure AD authentication. I am seeing frequent non-fatal exceptions in Crashlytics: Microsoft.Identity.Client.MsalClientException ErrorCode:…
Developer technologies | C#
.NET SDK not installed
Screenshot 2026-02-11 220349.png I am developing an Avalonia application in VS Code and everything has worked just fine until last week, when I started getting this pop up. I have uninstalled, reinstalled, updated, repaired, and restarted numerous times…
Developer technologies | C#
How can I prompt the browser to save a password
How can I prompt the browser to save a password in my ASP MVC NET 10 web app that uses Cookies Authentication? I'm using Chrome Version 145.0.7632.110 (Official Build) (64-bit)
Developer technologies | C#
MSBuild: Routing IO from <Exec> to calling terminal
I have a basic PowerShell script which I want to run after publish to copy the output files along with a few config files from source into the right directories on my company's storage server, archive old versions, etc. I created a target in my .csproj…
Developer technologies | C#
Deconstruct in C#
Hi, I'm using .NET 10 with Visual Studio 2026. Can you please explain this topic , how it used in many parts of C# languages? Thanks in advance, For example: public readonly struct Point { public int X { get; } public int Y { get; } public…
Developer technologies | C#
SharpCompress -Update from 0.445 to 0.46.3 produces error
Hi, I'm using class library of .NET 10. <TargetFrameworks>net10.0</TargetFrameworks> I update from 0.445 to 0.46.3 produces errors using (var archive = ArchiveFactory.Open(archivePath)) { var list = new List<string>(); …
Developer technologies | C#
Async Await in C#
Hi, I'm using .NET 10 with VS 2026. Can you please cover the history of this topic , Async Await in C#, along the C# versions? Where can I used this topic ? What is the best practice for this topic? Thanks,
Developer technologies | C#
Func<T> VS Action<T>
Hi , I'm using .NET 10 and Visual Studio 2026. Can you please tell me how to use both Func<T> and Action<T> ? When to use each one ? I see it very common used to pass it as a parameters to function. Can yo please demonstrate this usage and…
Developer technologies | C#
Record VS Class in C#
Hi, I'm using .NET 10 with Visual Studio 2026. Before you explain the difference between: Record VS Class in C#. Can you please why we need Record ? What is the syntax and use cases for it ? Thanks in advance,
Developer technologies | C#
add-migration throws error File web.dll not found. The startup project is where DbContext is. Web is the asp.net core project
Greetings, Ladies and Guys! So finally I found a tutorial of Razor Pages C#, with jQuery AJAX. The solution has 3 projects: Web (asp.net core razor pages app, here goes the config, such as connection string and some services), Core (Model and…
Developer technologies | C#
How to use Tuple?
Hi, I'm using .Net 10. I would like to know what is the best practice of using Tuple? As far as I know, Tuple was changed during C# versions, can you please summarize the changes? Can you give sniped code how to use it , what are the options I have…
Developer technologies | C#
Switch Statement in C#
Hi, I'm using .NET 10 , VS 2026. The Switch Statement have changed over the C# versions. Can you please summarize how switch statement change over the C# versions ? Why switch statement input is only string ? How to use switch statement in .NET10 as…
Developer technologies | C#
Exceptions in C#
Hi, I'm using .NET 10 , VS 2026. I would like to know what is the best practice to use exceptions in methods and other places. And how to handle exceptions ? what are the options I can use? There are many kinds of exceptions, where are all the list of…
Developer technologies | C#
Task in C#
Hi, I'm using .NET 10 in Visual studio 2026. I would like to know what is the best practice to work with tasks in C#. How to create them? How to make continuation? How to handle exceptions? How to handle timeout? How to cancel them ? Thanks,
Developer technologies | C#
.Json file
Hi, I'm using C# 10 , VS 2026. What is the best practice to work with .json file ? I would like to know what is .json file , and all its options? What is the structure for each options? How can I read this .json file for each option? If file is not…