hash table

hash table

שלום רב, אני בונה פרויקט שמצריך שימוש ב hash table האם משהו יודע אם יש אתר כלשהוא שאפשר להוריד ממנו מימוש של hash table? תודה מראש
 

[eLad]

New member
Hashtable

ישנה מחלקה גנרית בשם Dictionary שמקבלת שני טיפוסים, אחד ל-key והשני ל-value.
using System.Collections.Generic; ... Dictionary<string,int> dic=new Dictionary<string,int>(); dic["SomeString"]=6;​
פרטים נוספים ב-msdn http://msdn2.microsoft.com/en-us/library/xfhwa508(VS.80).aspx ב-1.1 אתה יכול להשתמש ב-System.Collections.Hashtable, כאשר ה-key הוא string וה-value הוא object.
 
למעלה