Hey there fellow dev -- Here are today's articles. But before you get going, could you help support our newsletter with a testimonial ❤️

Today's Articles

Difference Between ASP.NET Web Forms, MVC & .NET Core

https://www.c-sharpcorner.com/article/difference-between-asp-net-web-forms-mvc-net-core/

Explore the evolution of ASP.NET: Web Forms, MVC, and .NET Core. Understand key differences, features, and ideal use cases to choose the right framework.

Behind the Scenes of VS Code’s Planning Agent

https://www.youtube.com/watch?v=S9GZWSNOPK8

Azure Developer CLI: Azure Container Apps Dev-to-Prod Deployment with Layered Infrastructure

https://devblogs.microsoft.com/devops/azure-developer-cli-azure-container-apps-dev-to-prod-deployment-with-layered-infrastructure/

This post walks through how to implement "build once, deploy everywhere" patterns using Azure Container Apps with the new azd publish and layered infrastructure features in Azure Developer C...

Remove duplicate elements from an array in C#

https://www.c-sharpcorner.com/article/remove-duplicate-elements-from-an-array-in-c-sharp/

Learn how to remove duplicate elements from an array in C# using a practical, step-by-step approach with code examples and a real-time web application demo.

Benefits of Choosing ABP.io for Enterprise Software

https://www.faciletechnolab.com//blog/benefits-of-choosing-abpio-for-enterprise-software/

Discover why ABP.io is the top choice for scalable, secure enterprise software. Explore real-world benefits, success stories, and Facile Technolab’s expert approach to modern business solutions. Eleva...

Easier reflection with [UnsafeAccessorType] in .NET 10: Exploring the .NET 10 preview - Part 9

https://andrewlock.net/exploring-dotnet-10-preview-features-9-easier-reflection-with-unsafeaccessortype/

In this post I show how to work with [UnsafeAccessor] to do 'easier' reflection and how to use .NET 10's [UnsafeAccessorType] with types you can't reference

Get Ready for .NET Conf 2025!

https://devblogs.microsoft.com/dotnet/get-ready-for-dotnet-conf-2025/

The biggest .NET event of the year is just one week away! Join us November 11-13 for .NET 10 and Visual Studio 2026, plus a Student Zone on November 14th. The post Get Ready for .NET Conf 2025! appea...

Program to Convert Decimal to Binary in C#

https://www.c-sharpcorner.com/article/program-to-convert-decimal-to-binary-in-c-sharp/

Learn how to convert decimal numbers to binary in C# using a recursive function within an ASP.NET WebForms application. Includes code and examples! #csharp

Why It’s Not C-Hash and Is C-Sharp — An In-Depth Explanation

https://medium.com/@sanchitvarshney/why-its-not-c-hash-and-is-c-sharp-an-in-depth-explanation-3b66880095e1

Why it’s C #- Hash and the implications. When you first come across C#, the computer programming language, you will probably wonder: Why…

C# Logical Programs

https://www.c-sharpcorner.com/article/c-sharp-logical-programs/

Master C# with these essential logical programs! Learn to reverse strings, remove duplicates, count characters, find the 2nd highest number, check palindromes, & more.

Advanced .NET Core Concepts — DI, Middleware & Memory Leaks

https://www.c-sharpcorner.com/article/advanced-net-core-concepts-di-middleware-memory-leaks/

Master advanced .NET Core: Dependency Injection for loose coupling, custom middleware for request handling, and memory leak prevention for robust applications.

Blazor Forms for Beginners — A Simple Guide

https://medium.com/@syeedmdtalha/blazor-forms-for-beginners-a-simple-guide-8a7010728fc4

If you’re new to Blazor and wondering how to handle forms, you’re in the right place! In this article, we’ll explore how to create and…

Building an Extremely Fast Caching Repository Using the Decorator Pattern in ASP.NET Core 9.

https://medium.com/@mariammaurice/building-an-extremely-fast-caching-repository-using-the-decorator-pattern-in-asp-net-core-9-947ff75dd920

Modern web applications demand high performance, low latency, and efficient data retrieval. With ASP.NET Core 9 and C#, you can easily… Continue reading on Stackademic »

Various Way To Displaying Backend Data in Frontend with Data Binding in ASP.NET

https://www.c-sharpcorner.com/article/various-way-to-displaying-backend-data-in-frontend-with-data-binding-in-asp-net/

Explore various ASP.NET data binding techniques to display backend data in the frontend. Learn to use GridView, Repeater, ListView, and more for dynamic web pages.

How To Deploy Your .NET 9 Application to Azure Using GitHub Actions (Full CI/CD Pipeline Guide)

https://medium.com/@mariammaurice/how-to-deploy-your-net-9-application-to-azure-using-github-actions-full-ci-cd-pipeline-guide-32ca8043c69b

Build • Test • Publish • Deploy • Monitor — Automatically

10 Essential C# Fixes That Will Make You a Better Programmer

https://www.c-sharpcorner.com/article/10-essential-c-sharp-fixes-that-will-make-you-a-better-programmer/

Elevate your C# programming skills by addressing common pitfalls that lead to inefficient and buggy code. This article highlights 10 essential fixes, including avoiding magic strings, excessive commen...

.NET Core Cheat Sheet (Middleware + DI Lifetimes)

https://www.c-sharpcorner.com/article/net-core-cheat-sheet-middleware-di-lifetimes/

Master ASP.NET Core! This cheat sheet covers Middleware (pipeline, registration, rules) and Dependency Injection (lifetimes, best practices, common mistakes).

From Spring Boot to .NET: The Struggle

https://rasathuraikaran26.medium.com/from-spring-boot-to-net-the-struggle-14bf1c168ddf

My articles are open to everyone; non-member readers can read the full article by clicking this link Continue reading on Javarevisited »

Performance & Observability in ASP.NET Core 2025 With Latest .NET Core Version

https://www.c-sharpcorner.com/article/performance-observability-in-asp-net-core-2025-with-latest-net-core-version/

Explore ASP.NET Core 2025's performance & observability features! Discover JIT/AOT compilation, OpenTelemetry, improved logging, and metrics for faster, traceable apps.

Why I Skip Primary Constructors In C#

https://medium.com/@patrickduch93/why-i-skip-primary-constructors-in-c-a88bd458e5d4

I choose to skip primary constructors altogether, at they offer no real benefit beyond syntactic sugar. Shorter doesn't necessarily mean…

Roadmap for AI in Visual Studio (November)

https://devblogs.microsoft.com/visualstudio/roadmap-for-ai-in-visual-studio-november/

Today, we’re excited to share our public roadmap, which outlines the next steps in evolving Visual Studio with AI-powered agentic experiences. With every month, we aim to deliver smarter, faster, and ...

Using JSON and XML Data Efficiently in SQL Server for APIs

https://www.c-sharpcorner.com/article/using-json-and-xml-data-efficiently-in-sql-server-for-apis/

Leverage SQL Server's JSON & XML capabilities for efficient APIs. Parse data, return responses directly from SQL, boosting performance & simplifying integration.

Recursive Fibonacci Function in C#

https://www.c-sharpcorner.com/article/recursive-fibonacci-function-in-c-sharp/

Explore the recursive Fibonacci sequence implementation in C# WebForms! Learn with code examples, algorithm breakdown, and understand recursion in web development.

The History of C#: From Microsoft’s Bet to a Global Programming Powerhouse

https://medium.com/@muhammadalikhan0003/the-history-of-c-from-microsofts-bet-to-a-global-programming-powerhouse-cae902d5ee9e

Programming languages come and go, but few have managed to stay relevant across two decades of technological evolution. Among them, C#…

Read & write to a CSV file using a list in ASP.NET Core

https://www.roundthecode.com/dotnet-tutorials/read-write-csv-file-list-asp-net-core

Keep Reading

No posts found