Skip to content

Instantly share code, notes, and snippets.

View DevinDong's full-sized avatar

devin DevinDong

View GitHub Profile
namespace HashTableDict
{
using System.Collections;
using System.Collections.Generic;
public class Hashtable<TKey, TValue> : IDictionary<TKey, TValue>
where TKey : class
where TValue : class
{
private readonly Hashtable _ht = new Hashtable();