Search

How to use Tuple in C#
By Tan Lee Published on Jan 07, 2025 207

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

Read more
Hashtable vs Dictionary in C#
By Tan Lee Published on Jan 07, 2025 220

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

Read more
How to access the Windows Registry in C#
By Tan Lee Published on Jan 07, 2025 323

Microsoft .NET allows you to interact with the Windows Registry programmatically, enabling you to store and retrieve data.

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

Hangfire is an open-source job scheduling framework that allows you to schedule fire-and-forget and recurring tasks in web applications without requiring a Windows Service.

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

Serialization is the process of converting an object's state into a stream of bytes, enabling it to be stored in a permanent or temporary medium, like memory, a database, or a file.

Read more
How to use Fluent NHibernate in C#
By Tan Lee Published on Jan 07, 2025 506

Fluent NHibernate is an Object-Relational Mapping (ORM) framework that simplifies data access by allowing developers to perform CRUD (Create, Read, Update, Delete) operations without directly interacting with the database.

Read more
How to use Parallel LINQ in C#
By Tan Lee Published on Jan 07, 2025 133

Parallel LINQ (PLINQ) is an extension of Language Integrated Query (LINQ) that enables declarative data parallelism by utilizing multiple cores in a system to execute queries in parallel.

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

In C#, indexers allow objects to be accessed like arrays, enabling you to use an object with index values.

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

Attributes are a powerful feature in C# that allow you to attach metadata to your assemblies.

Read more
How to use Redis Cache in C#
By Tan Lee Published on Jan 06, 2025 363

Redis is an open-source, high-performance in-memory caching engine, packed with features, that allows you to efficiently store and retrieve data in your applications.

Read more