How To

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

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  85

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

How to measure the execution time using PostSharp
1/7/2025 8:17:49 AM  49

PostSharp's AOP (Aspect-Oriented Programming) features allow you to profile methods and identify slow-running ones in your application.

How to use Tuple in C#
1/7/2025 8:11:29 AM  71

Tuples are data structures that store a fixed-size, ordered sequence of immutable, heterogeneous elements, meaning each element can be of a different type.

How to use Lamar in ASP.NET Core
1/7/2025 7:55:30 AM  44

ASP.Net Core has built-in support for dependency injection (DI) with a minimal DI container.

How to use NCache in ASP.NET Core
1/7/2025 7:44:01 AM  61

Although ASP.Net Core doesn't include a cache object, it supports various caching methods, such as in-memory caching, distributed caching, and response caching.

How to use MiniProfiler in ASP.NET Core
1/7/2025 7:29:36 AM  52

Web application performance is a global concern, and developers have various tools to identify performance issues.

Using cookies in ASP.NET Core
1/7/2025 7:18:04 AM  112

A cookie is a small data file stored on a user's computer to hold information about the user. While most browsers store cookies as individual files, Firefox stores them together in one file.

How to use MediatR in ASP.NET Core
1/7/2025 7:08:58 AM  52

MediatR is an open-source implementation of the mediator design pattern, which helps manage communication between objects.

How to use Nancy in ASP.NET Core
1/7/2025 6:53:13 AM  41

Nancy is a simple, lightweight framework designed for creating HTTP-based services.

How to use IHostedService in ASP.NET Core
1/7/2025 6:45:37 AM  136

In ASP.Net Core, you can implement background tasks by using Azure WebJobs or various third-party task schedulers such as Quartz or Hangfire.

How to create a RESTful service in WCF
1/7/2025 4:06:22 AM  26

WCF (Windows Communication Foundation) is a messaging platform in .NET for building secure, reliable, and scalable web services.