languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2322 articles Updated Page 35 of 93
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 35 of 93
Newest first
-
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.
-
Program to Convert Decimal to Binary in C#
c-sharpcorner.com Issue #325
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
medium.com Issue #325
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
c-sharpcorner.com Issue #325
Master C# with these essential logical programs! Learn to reverse strings, remove duplicates, count characters, find the 2nd highest number, check palindromes, & more.
-
10 Essential C# Fixes That Will Make You a Better Programmer
c-sharpcorner.com Issue #325
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...
-
Performance & Observability in ASP.NET Core 2025 With Latest .NET Core Version
c-sharpcorner.com Issue #325
Explore ASP.NET Core 2025's performance & observability features! Discover JIT/AOT compilation, OpenTelemetry, improved logging, and metrics for faster, traceable apps.
-
Roadmap for AI in Visual Studio (November)
devblogs.microsoft.com Issue #325
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 ...
-
The History of C#: From Microsoft’s Bet to a Global Programming Powerhouse
medium.com Issue #325
Programming languages come and go, but few have managed to stay relevant across two decades of technological evolution. Among them, C#…
-
Understanding Vibe Coding
c-sharpcorner.com Issue #324
Vibe Coding: AI-powered software development using natural language. Learn how it accelerates prototyping, lowers entry barriers, and enhances learning for developers.
-
Stop Debating It — _ Prefixes Actually Make Your .NET Code Easier To Read
medium.com Issue #324
It's 2025. We've got AI copilots, cloud-native everything, and .NET is faster than ever. And yet… in some corner of code reviews, someone…
-
How To Create Smart Enums in C# With Rich Behavior (.NET 9)
medium.com Issue #324
The Guide I Wish I Had Years Ago
-
Understanding Recursion in C# – Find Sum of N Natural Numbers
c-sharpcorner.com Issue #324
Learn recursion in C# using ASP.NET WebForms! This tutorial explains how to calculate the sum of N natural numbers with a practical, step-by-step example.
-
Your LINQ is Slowing You Down: 5 Fixes Every .NET Developer Should Know
medium.com Issue #324
Five practical changes that eliminate hidden allocations, buffering, and unnecessary work.