languages
C# Articles, Tutorials & News
C# articles, tutorials, and news from the DotNetNews archive.
2466 articles Updated Page 53 of 99
Browse additional C# articles from the DotNetNews archive.
C# articles
Page 53 of 99
Newest first
-
Here are 5 underappreciated LINQ methods you should know:
medium.com Issue #283
- SequenceEqual - Aggregate - GroupJoin - ToLookup - Intersect
-
Async, Await, and Tasks: The C# Fundamentals You Can’t Afford to Ignore
blog.stackademic.com Issue #283
Understand thread context, task execution, and why improper async usage can haunt your apps. Continue reading on Stackademic »
-
Why 90% of C# Code Fails the Clean Test (and the 3 Laws That Fix It)
awstip.com Issue #283
Learn the exact principles top developers use to write maintainable, bug-resistant C# that stands the test of time — complete with… Continue reading on AWS Tip »
-
-
C# Guide with Ollama GPT-OSS — A
medium.com Issue #283
GPT-OSS is OpenAI’s first open-weight model since GPT-2, and it’s a game-changer for developers who want powerful AI without the cloud…
-
From DataTable to Excel: Practical C# Export Guide
medium.com Issue #283
Exporting data from C# applications to Excel files is a ubiquitous requirement in enterprise software development. Whether it’s for…
-
String Manipulation in C#
medium.com Issue #283
String manipulation is one of the most essential skills in C# development. From formatting names and messages to parsing user input and…
-
Boost Your C# Skills: Key .NET Core MCQs Every Developer Should Know
medium.com Issue #283
Introduction
-
The Hidden Traps of Async in C#
blog.stackademic.com Issue #283
Dive into thread context, blocking calls, and safe patterns for library and UI code. Continue reading on Stackademic »
-
6 Rules for Ultra-Low Latency Data Access at Massive Scale in C#
medium.com Issue #282
I came across this in a job description and was immediately intrigued.
-
Task Parallel Library (TPL) in .NET — Beyond Async/Await
medium.com Issue #282
Harnessing Parallelism for Performance
-
Master C# Linq in Just 25 Minutes!
frontend2backend.medium.com Issue #282
Are you still writing long loops in C# to filter, sort, or transform your data? 🤔 If yes, then you’re probably missing out on one of the…
-
C# Hacks: Transform your C# Coding Skills in Minutes
frontend2backend.medium.com Issue #282
If you’ve been working with C# and want to write cleaner, faster, and more professional code, I’ve got something exciting for you. I just…
-
Why C# Interviews Still Ask About Interface vs Abstract (and What It Really Reveals)
medium.com Issue #282
Why this “basic” C# question still dominates interviews in 2025 — and what your answer really says about your design skills.
-
How C# Patterns Killed 1000+ Lines of Boilerplate (and Hidden Bugs)
blog.devgenius.io Issue #282
👉 The Operator Family That Makes .NET Cleaner, Safer, and Faster Continue reading on Dev Genius »
-
.NET Core Console App’te .exe Dosyası Bulunamıyor Sorunu ve Çözümü
emrekabali.medium.com Issue #282
.NET Core Console Application projesinde katmanlı mimari kullanılıyor ve diğer projelerden interface ve entity’lerden faydalanılıyor…
-
What is WebAssembly in Web Development?
c-sharpcorner.com Issue #282
WebAssembly (Wasm) revolutionizes web development by enabling near-native performance in browsers. Compile code from languages like C++ and Rust for demanding tasks like gaming, video editing, and sci...
-
What’s new in C# 14?(Part 1)
medium.com Issue #281
C# 14 introduces several new features and enhancements to improve developer productivity and code quality. Let’s dive in!
-
Creating a JSON Class in C# | B2Basic Series Ep-1
isitvritra101.medium.com Issue #281
Understanding how to work with JSON
-
Converting Excel to XML using C#
medium.com Issue #281
This article will share a lightweight and stable solution: using the free library to achieve efficient Excel to XML conversion via C#.
-
7 .NET 8 Features You're Not Using (But Should Be)
faciletechnolab.com Issue #281
Find out 7 underused C# 12 and .NET 8 features for cleaner, faster, and more efficient code. Code examples included.
-
Loading Data in ML.NET: A Beginner’s Guide with C# Examples
itnext.io Issue #280
Learn how to prepare and load data into ML.NET using binary files, in-memory collections, and CSV/text loaders, with clear code samples… Continue reading on ITNEXT »
-
Meet C# 13: Syntax That Looks Like JavaScript — Backed by Microsoft’s Safety
towardsdev.com Issue #280
C# just leveled up — and if you’ve ever wanted your C# code to feel as clean and intuitive as JavaScript, version 13 is your ticket… Continue reading on Towards Dev »
-
Understanding Threading/ Multithreading, and Async/Await in C#
itsshubhamk.medium.com Issue #280
Working with C# applications frequently involves time-consuming tasks like reading files, contacting APIs, and running database queries.
-
From SQL Stored Procs to Pure LINQ/Lambda in .NET:
dotnetfullstackdev.medium.com Issue #280
You’ve built everything in Microsoft SQL Server with stored procedures — fast, predictable, and close to the metal. Now you want the same…