.NET Core Articles, Tutorials & News
.NET Core articles, tutorials, and news from the DotNetNews archive.
1453 articles Updated Page 9 of 59
.NET Core articles, tutorials, and news from the DotNetNews archive.
.NET Core articles
Page 9 of 59
Newest first
-
Understanding AI in the .NET
aindotnet.medium.com Issue #424
Many companies are interested in introducing artificial intelligence into their operations, but knowing where to start is often the…
-
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…
-
Fast .NET CLI Downloader
nodogmablog.bryanhogan.net Issue #423
There are plenty of GUI download managers, but I wanted a simple one that I can call from the command line. With the newish dotnet run app.cs style, it became easier to do this. Here is the full sou...
-
How Does Garbage Collection Work in .NET Core?
c-sharpcorner.com Issue #423
Master .NET Core's garbage collection! Learn how it manages memory, prevents leaks, and optimizes performance. Discover best practices for efficient apps.
-
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.
-
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.
-
A Simple .NET CLI Web Server
nodogmablog.bryanhogan.net Issue #422
Locally, I’ve been running some simple HTML, CSS, and JavaScript websites, as well as the static output of Hugo (my blog engine). When I wanted to serve these sites, I used to call python -m http.ser...
-
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!
-
MCP Server with .Net
antoniodimotta.medium.com Issue #421
With the release 1.0 of the official ModelContextProtocol .Net SDK, we are ready to make a MCP Server fully compliant with MCP specs and…
-
Setup Serilog For .NET Core
trevoirwilliams.com Issue #421
When unexpected events occur, tracing the root cause can become incredibly difficult. Imagine an error happening, and you only hear about it minutes or even seconds later. Without proper logging, pinp...
-
Extend Your Coding Agent with .NET Skills: A New Way to Supercharge AI-Assisted Development
blog.gopenai.com Issue #421
AI coding assistants are becoming a normal part of a developer’s workflow. Tools like GitHub Copilot, ChatGPT-based agents, and other AI… Continue reading on GoPenAI »
-
Installing .NET on Windows Without Admin Privileges
nodogmablog.bryanhogan.net Issue #421
I was chatting to a friend a few weeks ago when he told me that he couldn’t install .NET on a Windows computer where he doesn’t have admin access. When he tried to run the MSI installation files, he w...
-
-
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…
-
How to Reduce Latency in High-Performance Backend Systems?
c-sharpcorner.com Issue #420
Boost backend performance! Learn proven strategies to slash latency in your systems. Caching, async processing, and more for faster, scalable applications.
-
Why Your .NET App Hangs: A Beginner’s Guide to ThreadPool Starvation
c-sharpcorner.com Issue #419
Unlock .NET app performance! Learn to diagnose & fix ThreadPool Starvation, a common issue causing hangs & slowdowns. Master async/await for optimal scaling.
-
Mastering DateTime & Time Zones in ASP.NET Core: Stop Breaking Your Users’ Clocks
medium.com Issue #419
A deep-dive into DateTimeOffset, TimeZoneInfo, and UTC-first architecture that scales globally — with real code, real scenarios, and zero…
-
Hey network, I want to share a free tool I built to make starting new .NET
medium.com Issue #419
If you’ve ever started a new microservice, you know how tedious the initial boilerplate can be — wiring up the folder architecture…
-
What is async and await in C# with Example
c-sharpcorner.com Issue #419
Unlock the power of async/await in C#! Learn how to build responsive, scalable .NET applications with non-blocking asynchronous programming. Includes practical examples!
-
Modernize .NET Application Using AI
c-sharpcorner.com Issue #419
Learn how to modernize .NET applications using GitHub Copilot modernization agent. Discover AI-powered upgrades, Azure migration, and step-by-step modernization workflow.
-
Clean and Scalable Entity Configuration in Entity Framework Core (With Real Project Example)
medium.com Issue #418
When building modern applications with ASP.NET Core and Entity Framework Core, many developers start by configuring their entities…
-
Run and Debug .NET Core in VS Code
c-sharpcorner.com Issue #418
Effortlessly run and debug .NET Core Web API projects in VS Code. This guide provides a step-by-step walkthrough, covering setup, debugging, and troubleshooting for efficient development.
-
Toxy: A Forgotten .NET Library That Can Parse Almost Any Document
tonyqus.medium.com Issue #418
Toxy 2.6 is just released this week. I’d like to write a post to introduce this library to .NET Continue reading on .Net Programming »
-
Steps to Publish and Deploy a .NET Application Using a Publish ZIP File
c-sharpcorner.com Issue #418
Deploy .NET apps to Azure Web App Service effortlessly using Publish ZIP files! This guide simplifies deployment, bypassing CI/CD pipelines for quick, reliable releases. Learn to publish, zip, and dep...
-
How to Improve Performance in C# Applications
c-sharpcorner.com Issue #417
Boost C# app performance! Learn async/await, database optimization, caching, and more. Build faster, scalable, and reliable .NET software. Optimize now!