C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 17 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 17 of 94
Newest first
-
Hidden C# Features That Will Make You a Better Developer
medium.com Issue #424
C# is one of the richest and most mature programming languages in the ecosystem, yet many developers spend years using only a fraction of…
-
C# Interview Questions
medium.com Issue #424
Now, let us take a look at the top C# interview questions that you might face!
-
.NET & C# for FHIR Interoperability 3 — Resource Validator
medium.com Issue #424
Author: Rong Fan | FHIR Solution Provider | 10+ years .NET/C# expertise
-
10 C# 14 Features That Will Change How You Write Code
medium.com Issue #424
Ranked by how much they’ll actually affect your day-to-day work.
-
How to Detect Phishing Links in Documents using C#/.NET
cloudmersive.medium.com Issue #424
The possibility of phishing links living in document containers often gets ignored. Unfortunately, it’s a very real threat.
-
Word Page Setup in C# (Size, Margin, Orientation)
medium.com Issue #424
When developing business systems that involve document generation, it is often necessary to dynamically create Word reports based on data…
-
Merging Async Streams in C#: A Missing Primitive in IAsyncEnumerable
medium.com Issue #424
A minimal, dependency‑free merge operator that streams results as they complete
-
C# Zero to Hero: Everything a Beginner Needs in One Blog
medium.com Issue #424
So you’ve decided to learn C#. Great choice. C# is one of the most versatile, well-designed, and in-demand languages in the world. Whether…
-
Difference Between Abstract Class and Interface in C#
c-sharpcorner.com Issue #423
Unlock the power of C#! Learn the difference between abstract classes and interfaces with clear explanations, examples, and use cases. Write cleaner, scalable code!
-
IEnumerable vs IQueryable in C#
c-sharpcorner.com Issue #423
Unlock the secrets of IEnumerable vs IQueryable in C#! Learn when to use each for optimal C# performance with databases and large datasets. Boost your app's speed!
-
Difference between Task and Thread in C#
c-sharpcorner.com Issue #423
Unlock the secrets of C# concurrency! Explore the Task vs. Thread differences, performance implications, and best practices for efficient, scalable applications.
-
What is Boxing and Unboxing in C#?
c-sharpcorner.com Issue #423
Understand C#'s boxing and unboxing: converting between value and reference types. Learn how they impact performance and how to optimize your code for efficiency.
-
What are C# Record Types and When to Use Them?
c-sharpcorner.com Issue #423
Explore C# record types: a powerful feature for immutable data models. Learn about value-based equality, concise syntax, and best use cases for cleaner code. Ideal for DTOs and APIs.
-
The Hidden Cost of Abstraction in C#
c-sharpcorner.com Issue #423
Explore the hidden costs of abstraction in C#, including performance overhead, memory usage, and complexity. Learn how to balance abstraction for efficient code.
-
How to Use Async and Await in C#
c-sharpcorner.com Issue #423
Master asynchronous programming in C# with async and await! Learn how to write responsive, high-performance applications by handling I/O-bound operations efficiently.
-
Coding for Security with Chris Ayers
spreaker.com Issue #423
What does secure coding look like today? Carl and Richard talk to Chris Ayers about the MITRE ATT&CK matrix, a comprehensive breakdown of the tactics, techniques, and procedures black hats use to ...
-
Dependency Injection in C#
c-sharpcorner.com Issue #423
Learn Dependency Injection (DI) in C# with a practical example! Discover how to decouple code, improve testability, and easily switch services like Email to SMS. Perfect for ASP.NET Core projects.
-
Why Value Types Exist in C#: The Philosophy Behind Structs
c-sharpcorner.com Issue #423
Explore C#'s value types (structs) and their design philosophy. Learn how they boost performance, reduce garbage collection, and represent data efficiently. Discover when and how to use structs effect...
-
Building High-Throughput Pipelines in C# with TPL Dataflow
c-sharpcorner.com Issue #422
Build high-throughput data pipelines in C# using TPL Dataflow! Learn to process data efficiently with concurrency control and a clean architecture. Example: Car manufacturing.
-
Visual Studio Code 1.113
devblogs.microsoft.com Issue #422
Learn what's new in Visual Studio Code 1.113 Read the full article
-
What is the Difference Between IEnumerable and IQueryable in C#?
c-sharpcorner.com Issue #422
Unlock the secrets of IEnumerable vs. IQueryable in C#! Learn when to use each for optimal performance in data querying, especially with LINQ and Entity Framework. Master efficient data handling!
-
How Model Binding Works in ASP.NET MVC
c-sharpcorner.com Issue #421
Unlock the power of ASP.NET MVC Model Binding! Learn how it automatically maps form data to C# objects, simplifying your code and boosting development speed. Step-by-step guide included!
-
OrionGuard: The Guard Clause Library .NET Developers Have Been Waiting For
medium.com Issue #420
Stop writing the same null checks, range validations, and format guards over and over again. There is a better way.
-
Rewriting My Backend Identity Part 2) Roadmap to Become a .NET Developer
medium.com Issue #420
In my previous article, I shared my experience transitioning from Node.js to .NET during my internship. That change forced me to rebuild…
-
C# Performance Mistakes That Silently Kill Your APIs (And How to Fix Them)
medium.com Issue #419
Most C# APIs start fast.