Rounding, routing, and agent workflows
A varied .NET roundup on rounding, ASP.NET Core routing, Azure-backed email queues, background jobs, security, and AI-assisted coding tools.
Jasen's top three picks
- 1 C# Rounding Demystified: The Ultimate Guide to Rounding Numbers in .NET
medium.com
A clear, practical roundup on rounding behavior and the gotchas behind `Math.Round`.
- 2 C# vs Java — Which Language Should You Choose in 2026?
medium.com
A useful reminder that records and classes differ more in intent than syntax.
- 3 The Real Difference Between record and class Isn’t About Syntax
donmahsu.medium.com
If you build web APIs, the routing walkthrough is worth your time.
Editor's note
I kept this issue broad on purpose, with practical posts mixed in with a few opinionated reads. The ASP.NET Core routing guide and the exception-safety article are both especially useful if you’re shipping web apps. I also liked the Azure Queue email system and the agent-workflow piece for showing where .NET is heading in day-to-day automation.
Today's articles
C# Rounding Demystified: The Ultimate Guide to Rounding Numbers in .NET
medium.com
If you’ve ever Googled “C# round” hoping for clear, practical guidance on rounding numbers in .NET, you’re not alone. Rounding is one of…
Topics: C# Performance
Read articleC# vs Java — Which Language Should You Choose in 2026?
medium.com
Choosing between C# and Java in 2026 isn’t just about syntax or company loyalty — it’s about building software that lasts, scales, and…
Read articleThe Real Difference Between record and class Isn’t About Syntax
donmahsu.medium.com
When I first saw record, I honestly couldn’t grasp the point at all.
Read articleClaude Code — A Practical Guide to Automating Your Development Workflow
henriquesd.medium.com
This file contains structure guidance so Claude understands how to build and run the project, the architecture and folder structure, coding conventions and patterns, testing strategy and important com...
Topics: OpenAI Visual Studio Code
Read articleHow We Built an Asynchronous Email Notification System Using Azure Queue Storage and Azure…
medium.com
In almost every modern application, emails power critical workflows, account verifications, password resets, invoices, and many other…
Topics: Azure Service Bus
Read articleHow Routing Works in ASP.NET Core
malshikay.medium.com
Routing is one of the most important concepts in ASP.NET Core. Every HTTP request that comes into your application is mapped to a specific…
Topics: ASP.NET Core Web API
Read articleThings I Stopped Doing While Building Real-World .NET Software
medium.com
When I started learning .NET, everything felt structured and reassuring.
Topics: Design Patterns .NET Core
Read articleScheduled jobs using Background Service in .NET
medium.com
When building .NET applications, developers often focus on user-facing features — APIs, UI, and business logic. But behind the scenes…
Topics: .NET Core Performance
Read articleStudying compiler error messages closely: Input file paths
devblogs.microsoft.com
A colleague was working in a project that used a number of data files to configure how the program worked. They wanted one portion of the configuration file to be included only if a particular build f...
Read articleHow to Use Cursor for .NET Development: Top 5 Ways Explained
medium.com
Do you need expert help for software development? Explore how you can use cursor for .NET development in this guide
Topics: C# Visual Studio Code
Read articleAdding Licensing to C# Applications: The Easy and Simple Way
medium.com
The problem
Read articleAre exceptions exposing vulnerabilities in your .NET App?
roundthecode.com
Unhandled exceptions in ASP.NET Core can expose sensitive data. Learn when it happens, why it's dangerous, and how to fix it. The page Are exceptions exposing vulnerabilities in your .NET App? appeare...
Topics: Clean Architecture .NET 10
Read articleCreating .Net Core Microservices using Clean Architecture using .Net 10 & Angular 21
rahulsahay19.medium.com
Over the last few years, I’ve seen one pattern repeat itself again and again.
Topics: C# Design Patterns
Read articleHow to Organize Helpers Without Breaking Design?
medium.com
Helper methods are useful, until they quietly destroy your design. Here’s how to organize helper methods without cluttering your code.
Topics: OpenAI Semantic Kernel
Read articleBuilding Workflows with Branching Logic in .NET (Microsoft Agent Framework)
blog.gopenai.com
Modern applications often involve complex decision trees, where the flow of operations depends on conditions, user input, or model results… Continue reading on GoPenAI »
Read articleHow to Set Background Colors and Images in Word Documents Using C#
medium.com
Automating Word document formatting is a common requirement in .NET development. Setting document backgrounds — whether solid colors or…
Read article