Resources  
  • Dictionary vs HashTable in .NET C#May 08, 2024. Explore the differences between Dictionary and HashTable in .NET C#. Learn about efficient key-value storage, hashing techniques, and performance contrasts. Discover when to use Dictionary<TKey, TValue> for type safety and modern features versus HashTable for legacy support.
  • Introduction To Hashing and the HashTable Class: Part 3May 17, 2015. In this article, you will learn Hashing and the HashTable class in C# .NET.
  • Introduction To Hashing and the HashTable Class: Part 2May 10, 2015. In this article you will learn about Hashing and the HashTable class in C# .NET.
  • Introduction To Hashing and the HashTable Class: Part 1May 04, 2015. In this article you will learn about Hashing and the HashTable class in C# .NET.
  • Working with HashTable in C# 2.0Nov 13, 2006. Explore Hashtable in .NET 2.0, storing data with key-value pairs, constructors for capacity and load factor, fetching data with enumerator, clearing, and searching by key or value. Get ready for more insights in upcoming parts!
  • Hashtable In C#Jul 05, 2019. In this article, you will learn about C# HashTable and how to use a HashTable in C#.
  • C# HashTableMar 03, 2012. C#'s HashTable is a data structure storing key-value pairs using a hash function for fast retrieval. It handles collisions via chaining, ensuring efficient insertion, deletion, and retrieval operations. With automatic resizing and a dynamic load factor, it offers scalability while maintaining performance.
  • Hashtable SortingAug 31, 2008. This article gives you an idea for sorting a Hashtable.
  • Hashtable in C#Nov 14, 2005. Hashtable is useful when you need to store data in a key and value pair. This article shows how to use hashtable in C#.
  • How To Support Undo And Redo In Components Based On The Jtextcomponent ClassMar 11, 2022. In this article, you will learn how to support undo and redo in components based on the jtextcomponent class.
  • Collections in C#Aug 05, 2016. Collection in C# is a must-know concept for every developer. This article is about Collections in C#.
  • Thread Safe Collections ArrayList and QueueSep 24, 2004. The attached project provides a dll containing a wrapper around the non-thread safe ArrayList and Queue classes. The wrapper implements the most common functions of this collection elements.
  • Data Access Layer based on dataSetsJul 01, 2003. This article aims to introduce the reader to several conceptual problems encountered in the development of a generic Data Access Layer (from now on referred to as DAL).
  • Marble Solitaire Solution Display in GDI+Feb 13, 2002. The application finds and displays solutions to a game of solitaire. The application was written using Visual Studio.NET Version 7.0.9254. The test suite was written using NUnit, which is a .NET port of JUnit.
  • Shuffle Game for BeginnersJan 05, 2000. This code sample is a GDI+ shuffle game aimed for beginners. Attached zip file includes the exe and the Shuffle.cs file.