
Brighter
464 posts

Brighter
@BrighterCommand
A .NET Command Dispatcher, with Command Processor features for QoS (like Timeout, Retry, and Circuit Breaker), and support for Task Queues.


rough thoughts on dotnet (csharp) and agentic - agentmd should steer towards latest c# style ie “only use .net 10 code style” because of the wide degree of variance over the years. even with that guardrail in place it’s a mixed bag because the language has evolved so much over the years and models have that in their training data. - migrating a codebase from v8 coding style to v10 coding style super easy to do! - dotnet null just sucks; discriminated unions - miss eithert/maybe heaps and plenty of scenarios which should have been compiler time validation end up as runtime blowups. - writing roslyn analysers is now neat, fun and super productive. there’s no excuse to not utilise them to create back pressure - nuget still sucks; can’t ripgrep a dll and monkey patching libraries still sucks/not really possible/easy to do. - configuring compiler warnings to max level of aggression helps heaps. warnings should fail builds.







