nathanAjacobs
Explore posts from serversWould this AsyncQueue have issues with multiple producers and a single consumer?
First, I know Channels exist and I would obviously use them instead.
I can't use them because I'm adding functionality to an existing Unity library that does not have access to them. I'm intending to use this internally in the library for IPC purposes between Unity Editor instances.
Will this implementation have issues with synchronization? Also will FIFO be preserved?
I think the answer is there are no issues with this, but want to confirm.
18 replies
Prevent Visual Studio from adding NotImplementedException when generating method
Is it possible to configure Visual Studio to not add the
throw new NotImplementedException();
line when generating methods via quick actions?
I just want it to create an empty method.13 replies
AAE📼 Addie’s Analog Emporium 🌐
•Created by nathanAjacobs on 12/24/2024 in #tech-help
Adobe Audition not saving "Monitor Input" for saved multitrack session
Every time I open my saved session, I have to enable the
I
monitor input button
Does anyone know why this might be the case?1 replies
WPF - DataGridCheckBoxColumn Issues
In WPF, how can I have a DataGridCheckBoxColumn that allows me to click the checkboxes without having to select the row first. It's weird that when I click the checkbox it selects the row rather than just clicking the checkbox
I have this which seems to work, but it doesn't seem to update the value in the model when the checkbox is clicked. It only gets updated when I click the cell and click away.
How can I fix it so that when I click the checkbox it updates the model?
5 replies
NamedPipeClientStream.ReadAsync() continuously reads after the first message arrives
How come
NamedPipeClientStream.ReadAsync
continuously reads 0 bytes after the first message arrives?
Basically is there a way to have it asynchronously wait until more data arrives after the first message?5 replies
What exactly do these limitations mean for NativeAOT?
- No C++/CLI.
- Windows: No built-in COM
From the docs:
https://learn.microsoft.com/en-us/dotnet/core/deploying/native-aot/?tabs=net8plus%2Cwindows#limitations-of-native-aot-deployment
24 replies
Optional parameters with dependency injection
Is it possible to have an optional parameter for a constructor with dependency injection. I know that dependency injection usually it implies it is a required dependency, but for example if the only dependency is an
ILogger
, then I don't really care if one was registered or not.
EDIT: Changed ILogger<Test>
to be nullable
10 replies