C# Rounding, Routing, and Azure Workflows
A mixed .NET roundup covering rounding rules, ASP.NET Core routing, Azure queue email pipelines, background jobs, and AI dev tools.
Jasen's top three picks
- 1 C# Rounding Demystified: The Ultimate Guide to Rounding Numbers in .NET
medium.com
Rounding gets treated like trivia until money or reporting is involved; this guide is useful because it focuses on practical .NET behavior, not just math
- 2 C# vs Java — Which Language Should You Choose in 2026?
medium.com
A 2026 C# vs. Java comparison is always more about ecosystem and longevity than syntax, and that’s the angle worth debating.
- 3 The Real Difference Between record and class Isn’t About Syntax
donmahsu.medium.com
The record-vs-class piece is a good reminder that value semantics and intent matter more than the keyword itself.
Editor's note
I pulled together a familiar mix here: language fundamentals, web plumbing, architecture, and a few practical tooling pieces. The routing explainer and the Azure queue email system are especially useful if you’re building real services, not just samples. I also liked the compiler-error note for reminding us how much signal is hiding in the build output.
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#
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…
Topics: C#
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.
Topics: C#
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
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 Azure Functions
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: .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…
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...
Topics: .NET Core Performance
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#
Read articleAdding Licensing to C# Applications: The Easy and Simple Way
medium.com
The problem
Topics: C# Visual Studio Code
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...
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: Clean Architecture .NET 10
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: Design Patterns Solid Principles
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 »
Topics: OpenAI Semantic Kernel
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…
Topics: C#
Read article