How To

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

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  114

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  93

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  89

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  105

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  191

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  112

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  104

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  232

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  49

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

Effective Strategies to Prevent High CPU Usage
1/7/2025 3:36:06 AM  124

Application performance has always been a critical factor, influenced by various elements.

Hashtable vs Dictionary in C#
1/7/2025 3:30:14 AM  107

The Microsoft .NET Framework offers strong support for working with collections, which are used to store and retrieve data.