C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 50 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 50 of 94
Newest first
-
New LINQ Methods in .NET 9: A Quick Guide
medium.com Issue #276
The world of C# development is constantly evolving, and with each new version of .NET, we receive powerful enhancements that make our code…
-
Copy Word Document Content in C#: Pages, Sections, Paragraphs, Tables, and More
medium.com Issue #276
When working with Word documents in enterprise applications or software development, it’s often necessary to transfer content from one…
-
The Hidden Time Bomb in Your Code: Why DateTime.Now Could Be Sabotaging Your Applications
medium.com Issue #276
A single line of code that seems innocent but can destroy production logs, confuse users across time zones, and create phantom events in…
-
Remove Empty Lines and Blank Pages in Word using C#
medium.com Issue #276
When working with Word documents, you may often encounter unnecessary empty lines, blank tables, or even blank pages.
-
Discriminated Unions Might Be Coming to C#
blog.stackademic.com Issue #276
Not in C# 14 (maybe), but hey we can still dream. Continue reading on Stackademic »
-
The 3-Letter C# Keyword That Halves Allocations (And You’re Still Not Using It)
towardsdev.com Issue #275
Why This Blog Matters Continue reading on Towards Dev »
-
Mastering Incremental Source Generators in C#: A Complete Guide with Example
blog.elmah.io Issue #275
In the Previous blog, I discussed source generators. .NET has introduced an improved version of a source generator, called Incremental Source Generator. The new type generates code faster and reduces ...
-
Understanding NullReferenceException in .NET (and How to Avoid It)
medium.com Issue #275
From common pitfalls to modern solutions with C#
-
Taming the NullReferenceException in C# | Pro Tricks & Tips
frontend2backend.medium.com Issue #275
Find Your Answer Here : https://www.youtube.com/watch?v=lqZWf_Acuok&t=5s
-
Master C# from Basics to Advanced | Complete C# Learning Path with Algorithms & Real-World Skills
c-sharpcorner.com Issue #275
Learn C# step by step! From basics to advanced concepts with 20+ algorithms, OOP, LINQ, async, desktop & web app development.
-
C# Under the Radar: Why It’s Quietly Becoming the Backbone of AI and Enterprise Dev
medium.com Issue #275
Everyone’s chasing Python and JavaScript — but C# is evolving into the silent engine of AI, cloud, game dev, and enterprise systems… Continue reading on .Net Programming »
-
5 Common .NET Developer Mistakes and How to Avoid Them
blog.yaseerarafat.com Issue #274
Starting your journey as a .NET developer is exciting. You’ve got the power of a mature ecosystem, modern tools like Visual Studio and…
-
The C# Feature That Saves You Thousands… But No One Talks About
blog.devgenius.io Issue #274
Why This Blog Matters Continue reading on Dev Genius »
-
Day 11: Exploring the Depths of IAsyncEnumerable and Asynchronous Streams in .NET
medium.com Issue #274
When we think of asynchronous programming in .NET, the first thing that comes to mind is async/await. While incredibly useful, it only…
-
Performance tips in C# that won’t cost you anything
medium.com Issue #274
Use Count if you know the exact size of the array
-
CommandResponse: Simplifying Success and Error Handling in C#
c-sharpcorner.com Issue #274
In modern application development, handling responses consistently is just as important as writing the core business logic. When a method executes, it may succeed and return useful data — or fail and ...
-
Enhancing UI Code Quality with C# 12 (.NET 10)
javascript.plainenglish.io Issue #274
Embracing C# 12 Features for Cleaner UI Layers Continue reading on JavaScript in Plain English »
-
The Most Expensive Line of Code I Ever Wrote in C#
medium.com Issue #274
Why This Blog Matters Continue reading on Towards Dev »
-
Async vs Parallel in .NET Explained: Stop Mixing Them Up
levelup.gitconnected.com Issue #274
Learn the difference between asynchronous I/O and true parallel execution in C#, and when to use each for scalable apps. Continue reading on Level Up Coding »
-
Serilog Tips and Tricks: Structured Console Logging with Formatting
medium.com Issue #274
Serilog is one of the most powerful and flexible logging libraries in .NET.
-
GPT-OSS – A C# Guide with Ollama
devblogs.microsoft.com Issue #273
Run GPT-OSS locally with C# and Ollama to build fast, private, offline AI The post GPT-OSS – A C# Guide with Ollama appeared first on .NET Blog.
-
Exploring New LINQ Additions in C# 13: Index, CountBy, AggregateBy
medium.com Issue #273
C# 13 is just around the corner, and with it comes a few new LINQ methods to make our lives easier. As part of the .NET 9 release at .NET…
-
Taming Generics, Interfaces & JSON in .NET — Meet JsonPolymorphic
marius-schroeder.de Issue #273
Goodbye custom converters, hello clean polymorphic JSON in .NET 7+ Continue reading on Medialesson »
-
C# Memory Leak
c-sharpcorner.com Issue #273
Learn how to prevent memory leaks in C# caused by static event handlers. This guide explains IDisposable, SafeSubscriber, and best practices for managing event subscriptions and garbage collection in ...
-
5 Advanced String Tricks That Will Instantly Level Up Your Code
blog.stackademic.com Issue #273
Utilize these modern patterns to conserve memory, prevent bugs, and enhance performance. Continue reading on Stackademic »