How To

Export DataTable To Excel in C#
1/8/2025 4:20:45 AM  276

In this article, I introduce a utility for exporting a DataTable to an Excel file in C# using the Interop method.

C# Export to Excel
1/8/2025 4:05:08 AM  131

Working with various Excel spreadsheet formats and utilizing C# export functionalities is essential for many projects.

Sending Emails in C#
1/8/2025 2:29:46 AM  181

Sending emails is often not a favorite task for developers, though almost every system requires it.

Sending Emails in C# using MailKit
1/8/2025 1:54:12 AM  271

MailKit is a robust open-source .NET library designed for sending and receiving emails. We use it as an alternative to the SmtpClient class from the System.Net.Mail namespace.

How to implement a distributed cache in ASP.NET Core
1/7/2025 9:25:52 AM  157

ASP.Net Core offers support for various caching techniques, including in-memory caching, response caching, and built-in distributed caching.

How to build custom middleware in ASP.NET Core
1/7/2025 9:23:05 AM  134

ASP.NET Core is an open-source, cross-platform, modular framework for building high-performance web applications.

How to use ArrayPool and MemoryPool in C#
1/7/2025 9:19:45 AM  229

Utilize array pooling and memory pooling in C# to reduce memory allocations and enhance application performance.

How to use HttpModules in ASP.NET
1/7/2025 9:18:21 AM  99

HTTP modules in ASP.NET are components that intercept incoming requests and inject pre-processing logic into the request processing pipeline.

How to use HTTPHandlers in ASP.NET
1/7/2025 9:15:33 AM  113

In ASP.Net, an HTTPHandler is a low-level request and response API used to insert pre-processing logic into the request pipeline based on file extensions and HTTP methods (verbs).

How to use LiteDB in C#
1/7/2025 8:36:39 AM  238

LiteDB is a lightweight, fast, and easy-to-use embedded NoSQL database for .NET.

How to use RabbitMQ in C#
1/7/2025 8:30:20 AM  162

RabbitMQ is a fast, open-source message broker written in Erlang, based on the Open Telecom Platform framework.

How to use FileSystemWatcher in C#
1/7/2025 8:21:45 AM  166

The FileSystemWatcher class in the System.IO namespace is used to monitor changes in the file system.