Click here to Skip to main content
15,915,603 members
Home / Discussions / C#
   

C#

 
QuestionMoving Threads Pin
NaNg1524124-Jul-06 9:09
NaNg1524124-Jul-06 9:09 
AnswerRe: Moving Threads Pin
Not Active24-Jul-06 9:49
mentorNot Active24-Jul-06 9:49 
GeneralRe: Moving Threads Pin
NaNg1524124-Jul-06 10:06
NaNg1524124-Jul-06 10:06 
GeneralRe: Moving Threads Pin
Not Active24-Jul-06 10:12
mentorNot Active24-Jul-06 10:12 
AnswerRe: Moving Threads Pin
User 167325224-Jul-06 19:49
User 167325224-Jul-06 19:49 
QuestionHashtable vs. Dictionary Pin
honeyman_can24-Jul-06 8:46
honeyman_can24-Jul-06 8:46 
AnswerRe: Hashtable vs. Dictionary [modified] Pin
eggsovereasy24-Jul-06 8:52
eggsovereasy24-Jul-06 8:52 
AnswerRe: Hashtable vs. Dictionary Pin
Not Active24-Jul-06 10:09
mentorNot Active24-Jul-06 10:09 
Because a HashTable uses object for both the key and value it is possible to do soemthing like this

Hashtable ht = new Hashtable();<br />
ht.Add("one", 1);<br />
ht.Add(1, 1);


Not very type safe and it incurs the boxing/unboxing penalty. Where as the Dictionary uses the specified types for key and value the above would not be possible (unless you used object as the key)

only two letters away from being an asset

GeneralRe: Hashtable vs. Dictionary Pin
honeyman_can24-Jul-06 10:30
honeyman_can24-Jul-06 10:30 
GeneralRe: Hashtable vs. Dictionary Pin
leppie24-Jul-06 10:41
leppie24-Jul-06 10:41 
AnswerRe: Hashtable vs. Dictionary Pin
Ista24-Jul-06 11:05
Ista24-Jul-06 11:05 
AnswerRe: Hashtable vs. Dictionary Pin
User 167325224-Jul-06 20:03
User 167325224-Jul-06 20:03 
GeneralModel View Presenter pattern question Pin
Judah Gabriel Himango24-Jul-06 8:33
sponsorJudah Gabriel Himango24-Jul-06 8:33 
GeneralRe: Model View Presenter pattern question Pin
Andrew Lygin25-Jul-06 3:02
Andrew Lygin25-Jul-06 3:02 
GeneralRe: Model View Presenter pattern question Pin
Judah Gabriel Himango25-Jul-06 4:23
sponsorJudah Gabriel Himango25-Jul-06 4:23 
GeneralRe: Model View Presenter pattern question Pin
Andrew Lygin26-Jul-06 18:02
Andrew Lygin26-Jul-06 18:02 
Questiondate time picker Pin
Mohammed Elkholy24-Jul-06 8:27
Mohammed Elkholy24-Jul-06 8:27 
AnswerRe: date time picker Pin
Paul Brower24-Jul-06 10:15
Paul Brower24-Jul-06 10:15 
GeneralRe: date time picker Pin
BoneSoft24-Jul-06 10:36
BoneSoft24-Jul-06 10:36 
QuestionDatagridview - Datagrid question (scrollbars) Pin
Timothy_198224-Jul-06 8:10
Timothy_198224-Jul-06 8:10 
QuestionRepresenting a Relational Table with XML and C# Pin
Gary Hopson24-Jul-06 7:51
Gary Hopson24-Jul-06 7:51 
QuestionGenerate HL7 message Pin
jung197524-Jul-06 7:29
jung197524-Jul-06 7:29 
AnswerRe: Generate HL7 message Pin
Not Active24-Jul-06 7:37
mentorNot Active24-Jul-06 7:37 
GeneralRe: Generate HL7 message Pin
jung197524-Jul-06 9:07
jung197524-Jul-06 9:07 
GeneralRe: Generate HL7 message Pin
Not Active24-Jul-06 9:44
mentorNot Active24-Jul-06 9:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.