1,623,653 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
14
views
Windows errors in MAUI: how to understand the real error?
I'm developing a new NET10 MAUI application because I want to run the app in iOS, Android and Windows. The app is already running without issues in Android and iOS. Usually, the Windows version worked ...
0
votes
0
answers
9
views
How to filter out dependency telemetry for internal kubernetes calls in Application Insights?
I have an application that produces about 400k dependency telemetry events per 24 hours, which has a real, tangible cost on my company's cloud hosting budget.
99% of those events are various calls to ...
0
votes
0
answers
20
views
VS 2026: High RAM and Disk usage issue with Roslyn Code Analysis
I have this problem:
Somehow it has high Disk and RAM usage. I checked this prev question about vs2022 (VS 2022: High RAM and CPU issue with Roslyn Code Analysis), and I did some changes, but no ...
0
votes
0
answers
23
views
Resolve Key with Dependency Injection in AddJwtAuthentication in asp.net core app
i want to authenticate my users with JWT tokens. for this porpuse i write a ISigningKeyRepository that handle rotating and creating signing keys in database. now when i want to register JWT ...
1
vote
0
answers
46
views
Error reading resource file after deleting my form
After I deleted my CashierLoginForm and created a new form called UserLogin.cs, this error pops up when I run my program:
CS1566 Error reading resource 'LendingApp.obj.Debug.LendingApp.UI.CashierUI....
1
vote
0
answers
37
views
How to get entire Ydoc state in byte[] in c# using YDotNet package?
The application I am working on is basically a collaborative editor, where the react clients (Slate+Yjs) will be connect to the backend sever dotnet web api using signalR, The thing is I need to ...
1
vote
0
answers
38
views
CommunityToolkit Popup for iOS has margins
In my NET10 MAUI application, I have a component to display the list of supported languages. I'm using the Popup function in the CommunityToolkit 13.0.0. The component is working fine for Android and ...
0
votes
0
answers
49
views
Minimal plugins for C# libvlcharp - how to determine
I have a simple C# .NET Winforms app. It will just play a standard .mp4 video with audio.
This is how I initialize
string[] vlcParameter1 = new string[]
{
@"--video-x=0"...
Advice
0
votes
4
replies
71
views
C# external http request response as streaming API-response
Our ASP.NET Core Web API needs to request data from an external web service (and no, the external web service cannot be called directly from the client) and return it without modification to the ...
1
vote
1
answer
37
views
Metalama Diagnostics Not Being Reported Correctly
I am implementing a method aspect and I need to check that the return value specified in the attribute matches the method's return type (or can be safely cast to it).
I defined by aspect like so:
[...
0
votes
1
answer
131
views
Why aren't my benchmark results faster in Release compared to Debug?
Setup
I have the following project: IvanStoychev.Useful.String.Extensions
It's just a bunch of string helper methods.
Such as:
public static bool ContainsAny(this string str, IEnumerable<string> ...
Best practices
0
votes
3
replies
69
views
Optimization of validation of similar properties
I have the following command to create an instance of the domain model:
public class CreateCPUCommand : IRequest<int>
{
public int Article { get; set; }
public int Garanty { get; set; }
...
0
votes
0
answers
28
views
macOS: CGWindowListCreateImage captures wallpaper/behind window instead of visible TradingView window (Chrome), but CGEvent mouse clicks work [closed]
I’m building a macOS desktop app (C#/.NET + Avalonia) that:
Captures a small region of the screen and checks pixel colors (detect a green/red "signal panel").
If a signal is detected, it sends a ...
0
votes
0
answers
49
views
FPS character rigidbody rotation axis issue
Unwanted Rotation: When I jump or move sideways, the player object rotates on its own. If I lock the Y-axis in Rigidbody constraints, my mouse-look script stops working correctly.
I tried:
If I freeze ...
0
votes
0
answers
46
views
How can I avoid Raylib (c# bindings) AudioStream distorting Noise channel output on playback
I am trying to generate and play audio in an emulator using Raylib's AudioStream API and its callback feature. My emulator produces Square, Triangle, Sawtooth and Noise. All waveforms sound correct ...