Tag

dotnet

0 views collected around this technical thread.

IT Services Circle
IT Services Circle
Mar 1, 2022 · Fundamentals

C# 11 Preview Features: Multiline Interpolated Strings, List Patterns, and Parameter Null Checking

The article introduces three C# 11 preview features—allowing line breaks inside interpolated string expressions, a new list pattern syntax for matching arrays and slices, and a concise parameter null‑checking syntax—explaining their usage, showing code examples, and describing how to enable them in a project.

C#11C++Null Checking
0 likes · 7 min read
C# 11 Preview Features: Multiline Interpolated Strings, List Patterns, and Parameter Null Checking
Top Architect
Top Architect
Oct 7, 2021 · Backend Development

Implementation of Image and SMS Captcha Service in .NET Core

This article walks through the design and implementation of a complete captcha solution—including image and SMS verification—using .NET Core, covering background context, code details for generating graphics, unsafe handling, noise lines, caching strategies, rate limiting, validation logic, runtime results, and a link to the full source repository.

Verificationbackendcaching
0 likes · 14 min read
Implementation of Image and SMS Captcha Service in .NET Core
Tongcheng Travel Technology Center
Tongcheng Travel Technology Center
Sep 10, 2021 · Backend Development

Using Object Pools in .NET (Core) to Reduce GC Overhead and Improve Performance

This article explains how .NET's Microsoft.Extensions.ObjectPool framework can be used to reuse objects, customize pooling policies, integrate with dependency injection, and extend pooling to collections, StringBuilder, arrays and memory buffers, thereby minimizing garbage‑collection pressure and boosting application throughput.

DependencyInjectionMemoryManagementcsharp
0 likes · 29 min read
Using Object Pools in .NET (Core) to Reduce GC Overhead and Improve Performance
Fulu Network R&D Team
Fulu Network R&D Team
Nov 16, 2020 · Backend Development

Deploying .NET Core Applications on Linux: From Manual Setup to Docker

This guide walks .NET developers through the complete process of moving from .NET Framework to .NET Core on a Linux server, covering prerequisite tools, SSH key configuration, SDK installation, manual publishing, production‑grade setups with Supervisor+Nginx or Jexus, and finally Docker‑based deployment with automation scripts.

DockerLinuxNginx
0 likes · 16 min read
Deploying .NET Core Applications on Linux: From Manual Setup to Docker
Architecture Digest
Architecture Digest
Jun 10, 2017 · Backend Development

Designing a Stable Architecture for .NET Applications: Presentation, Business, and Data Layers

The article discusses a systematic .NET application architecture that separates the presentation, business, and data layers, explains UI and controller responsibilities, compares data‑transfer and domain models, and reviews various data‑access strategies such as ADO.NET, ORM, and DataMapper to achieve maintainable, extensible software.

Data AccessMVCarchitecture
0 likes · 15 min read
Designing a Stable Architecture for .NET Applications: Presentation, Business, and Data Layers