C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 8 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 8 of 94
Newest first
-
How to Integrate Claude AI with .NET Applications
c-sharpcorner.com Issue #472
Learn how to integrate Claude AI with .NET applications using ASP.NET Core, C#, and Claude API. Build AI chatbots, assistants, and enterprise apps.
-
Give Your .NET MAUI Android Apps a Material 3 Makeover
devblogs.microsoft.com Issue #472
Material 3 (a.k.a. Material You) support is now available for .NET MAUI apps on Android. Here is how to enable it, what changes today, and what is still on the way. The post Give Your .NET MAUI Androi...
-
C# Source Generators: Improving Performance and Reducing Boilerplate Code
c-sharpcorner.com Issue #472
Learn C# Source Generators with practical examples. Discover how compile-time code generation improves performance and reduces boilerplate code in .NET applications.
-
EF Core Auditing Using Interceptors: Step-by-Step Tutorial
c-sharpcorner.com Issue #472
Learn how to implement EF Core auditing using SaveChanges Interceptors. Track CreatedBy, ModifiedBy, timestamps, soft deletes, and user activity with practical examples.
-
Strategy Pattern: Choosing Without Attachment
binaryintellect.net Issue #472
Every application reaches a point where it must make a choice. How should a list be sorted? How should a payment be processed? Which discount should be applied? How should a user be authenticated? The...
-
Creating .NET apps takes forever - then we tried AI
roundthecode.com Issue #472
We gave Claude a vague prompt to build a .NET app - it struggled. Then we added technical documents. The results were dramatically better. Here's what we learned. The page Creating .NET apps takes for...
-
40 Lessons I Learned in 12 Years as a .NET Developer
antondevtips.com Issue #472
After 12 years of building .NET applications, I have learned 40 hard-earned lessons about writing code, designing systems, and shipping software. From clean code and architecture trade-offs to code re
-
When Design Patterns Become Rituals
binaryintellect.net Issue #472
There is a peculiar phenomenon that happens in software teams after they reach a certain size or maturity. Design patterns — those hard-won abstractions distilled from decades of engineering experienc...
-
Reverse Engineering an API in .NET Core – Complete Practical Example
c-sharpcorner.com Issue #472
Master API reverse engineering in .NET Core! Learn to analyze undocumented APIs, recreate functionality, and integrate with systems using practical examples and tools.
-
I Built a Full-Stack Marketplace in 3 Months — Here’s What Actually Happened
medium.com Issue #472
Most portfolio projects look the same. A todo app, a weather dashboard, maybe a blog with a CMS.
-
-
Async and Await in C# for Beginners
c-sharpcorner.com Issue #471
Unlock the power of asynchronous programming in C#! This beginner's guide explains async and await with clear examples, boosting app responsiveness and performance. Learn to handle long-running tasks ...
-
AI Building Blocks for .NET: Add intelligence to your C# Apps
youtube.com Issue #471
A practical, opinionated guide to building intelligent apps in .NET ⌚ Chapters: 00:00 Welcome and Intro 00:28 What we're talking about today 02:58 Today's building blocks 03:40 Foundations: Microsoft....
-
Implementing Long-Term Memory in Enterprise AI Agents Using C#
c-sharpcorner.com Issue #471
Learn how to implement long-term memory in enterprise AI agents using C#, vector databases, embeddings, and memory retrieval patterns to build intelligent and personalized AI solutions.
-
Building a Scheduling App in C# WinForms From Scratch: What the Tutorials Skip
medium.com Issue #470
WinForms Continue reading on JIN System Architect »
-
Improving C# memory safety
csharpdigest.net Issue #470
C# 16 is redesigning the unsafe keyword to act as an explicit contract
-
XAML.io v0.7exports C# projects as native to Windows, macOS and Linux
news.google.com Issue #470
XAML.io v0.7exports C# projects as native to Windows, macOS and Linux
-
5 C# One-Liners That Replace 20 Lines of Code
medium.com Issue #470
Tiny syntax. Huge impact. The kind of C# tricks that quietly make your code 10x cleaner.
-
I Replaced Task with ValueTask in My Data Layer. Here’s What Actually Happened.
serkanozbeykurucu.medium.com Issue #470
Most .NET devs reach for Task without thinking. I did too, for years. It works fine almost everywhere, which is exactly why nobody…
-
Multi-Agent Frameworks for .NET — A Practical Guide
medium.com Issue #469
If you’ve spent any time building with LLMs, you’ve probably hit the wall: a single prompt only gets you so far. Stuff too much into one…
-
Collections in C# — From Basic to Advanced
medium.com Issue #469
Collections are one of the most important concepts in C#. They help us store, manage, search, sort, and manipulate groups of data…
-
Agent Governance Toolkit for .NET:
medium.com Issue #469
A few months ago, most conversations around AI agents focused on one thing:
-
Microsoft wants safer C# without turning it into Rust
news.google.com Issue #469
Microsoft wants safer C# without turning it into Rust
-
C# Has a Null Problem. Here’s What That Means
medium.com Issue #469
What null is, why it crashes your app, and how ?. and ?? fix it
-
Improving C# Memory Safety: Why Modern .NET Is Quietly Becoming More Secure
towardsdev.com Issue #469
A few years ago, whenever developers talked about “memory safety,” the conversation usually centered around languages like: Continue reading on Towards Dev »