Search

How to use HttpClient and IHttpClientFactory in .NET Core
By Tan Lee Published on Jan 09, 2025 390

When working with APIs in C#, the HttpClient class is essential for making HTTP requests such as GET, PUT, POST, or DELETE.

Read more
How to Get Total Physical RAM in C#
By Tan Lee Published on Jan 08, 2025 473

Retrieving the total installed physical memory (RAM) on the system is straightforward.

Read more
Export DataTable To Excel in C#
By Tan Lee Published on Jan 08, 2025 538

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

Read more
C# Export to Excel
By Tan Lee Published on Jan 08, 2025 259

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

Read more
Sending Emails in C#
By Tan Lee Published on Jan 08, 2025 347

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

Read more
Sending Emails in C# using MailKit
By Tan Lee Published on Jan 08, 2025 556

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.

Read more
How to use ArrayPool and MemoryPool in C#
By Tan Lee Published on Jan 07, 2025 511

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

Read more
How to use LiteDB in C#
By Tan Lee Published on Jan 07, 2025 500

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

Read more
How to use RabbitMQ in C#
By Tan Lee Published on Jan 07, 2025 331

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

Read more
How to use FileSystemWatcher in C#
By Tan Lee Published on Jan 07, 2025 342

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

Read more