C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2334 articles Updated Page 35 of 94
C# articles, tutorials, and news from the DotNetNews archive.
C# articles
Page 35 of 94
Newest first
-
5 .NET Async Habits That Separate Senior Engineers From Everyone Else
blog.stackademic.com Issue #328
Real patterns that scale instead of silently breaking under load Continue reading on Stackademic »
-
The Hidden C# Bug That Passes Every Test — Until It’s Too Late
medium.com Issue #328
Discover how a tiny check involving negative values can cause catastrophic system behavior. This deep dive reveals why so many senior devs…
-
50 C#/.NET Code Hacks to Improve Fast
amarozka.dev Issue #328
Real C#/.NET tips with short code samples. Cleaner syntax, safer async, faster APIs, fewer bugs. Copy‑paste ready and team‑friendly. Continue reading on .Net Code Chronicles »
-
️Defensive Coding in .NET — How to Make Bugs Afraid of You
medium.com Issue #327
“You deploy your code on Friday evening. Everything looks perfect… until Monday morning when a null reference breaks production.”
-
GitHub Actions DevOps Pipelines as Code using C# and Cake SDK
youtube.com Issue #327
C# Property Patterns — Writing Readable “Checklists” for Your Objects
-
Stop Using Regular Enums: Create Smart, Feature-Rich Enums in C# (.NET Tutorial)
shahedbd.medium.com Issue #327
Why Your Enums Are Holding You Back (And What to Do About It)
-
Static classes in C# -.NET Core
medium.com Issue #327
A static class is a class that cannot be instantiated. we cannot use the new keyword to create objects of a static class. Instead, all…
-
Understanding Span<T> in C#
c-sharpcorner.com Issue #327
Learn how it provides a zero-allocation view over memory for arrays, strings, and more, boosting efficiency and reducing GC overhead
-
Understanding Covariance, Contravariance & Invariance in C# — The Complete Practical Guide
medium.com Issue #327
If you’ve ever worked with generics, delegates, or LINQ in C#, you’ve already used variance — even if you didn’t know its name.
-
What you need to know about Extension Members in C#
c-sharpcorner.com Issue #327
Learn how to extend existing types without modification, adding functionality and improving code readability.
-
Understanding Inheritance in C# WebForms
c-sharpcorner.com Issue #326
Learn C# inheritance in WebForms! This tutorial shows how to create a base `Employee` class and extend it with a `Manager` class, demonstrating code reuse.
-
How to Encrypt PAN in JavaScript and Decrypt in C#
c-sharpcorner.com Issue #326
Secure sensitive data like PAN by encrypting it client-side with CryptoJS, decrypting server-side in C#, and preventing storage in ViewState. Protect data in transit and at rest.
-
Pascal’s Triangle in C# WebForms
c-sharpcorner.com Issue #326
Learn how to generate Pascal's Triangle in C# WebForms! This tutorial provides a real-time example with ASPX page and code-behind, including explanation and output.
-
Discovering C#: Why It Remains Among the Most Influential Programming Languages Today
medium.com Issue #326
While the discussion around today’s programming languages often revolves around names like JavaScript, Python, and Rust, there’s one…
-
Recursion & Algorithms in C#
c-sharpcorner.com Issue #326
Explore recursion and algorithms in C# with a practical factorial example using WebForms. Learn how to implement recursive functions and understand their advantages and disadvantages. A clear guide wi...
-
Print Pyramid Star Pattern using C# in ASP.NET WebForms
c-sharpcorner.com Issue #326
Learn to create a Pyramid Star Pattern in C# ASP.NET WebForms using nested loops and StringBuilder. A great exercise for mastering logic and HTML rendering!
-
Introduction to ASP.NET – Architecture, Features & Real-World Use Cases
c-sharpcorner.com Issue #326
Explore ASP.NET: a robust framework for building dynamic web apps, APIs, and enterprise software. Learn about its architecture, key features, and real-world applications.
-
Dynamically Setting HTML Attributes Using C# in ASP.NET
c-sharpcorner.com Issue #326
Learn how to dynamically set HTML attributes in ASP.NET using C#. Modify control behavior and appearance based on server-side logic for enhanced interactivity and accessibility.
-
Dependency Injection and IoC in ASP.NET Core: A Professional Guide
medium.com Issue #326
In the world of professional .NET application development, Dependency Injection (DI) and Inversion of Control (IoC) are not just trendy…
-
C# Parallel Programming for CPU-Bound Workloads (In-Depth Parallel Class Guide)
medium.com Issue #326
Target audience: Intermediate to advanced .NET developers
-
50 Hidden C# & .NET Features That Will Change How You Code
medium.com Issue #326
If you’re coding in C# or .NET daily, you already know how even a tiny improvement in your code can lead to big performance wins and…
-
SOLID Principles: A Practical Guide (with C# Examples)
medium.com Issue #326
“Any fool can write code that a computer can understand. Good programmers write code that humans can understand.” ~ Martin Fowler
-
The Simple Way to Understand Managed Resources in .NET
medium.com Issue #326
Many developers hear about managed and unmanaged resources but find the topic confusing. In reality, it’s much simpler than it sounds —…
-
10 Lessons I Learned the Hard Way Building LLM Apps
slimktari.com Issue #326
AI made my code shorter, but my nights longer. That pretty much sums up my experience building LLM-powered apps.
-
Remove duplicate elements from an array in C#
c-sharpcorner.com Issue #325
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.