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 moreHashtable 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 moreHow 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 moreHow 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 moreHow 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 moreHow 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 moreHow 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 moreHow 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 moreHow 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 moreHow 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