Click here to Skip to main content
15,895,740 members
Home / Discussions / C#
   

C#

 
AnswerRe: update Dictionary with new KeyValuePair set Pin
Abhinav S27-Mar-10 4:47
Abhinav S27-Mar-10 4:47 
GeneralRe: update Dictionary with new KeyValuePair set Pin
Dan Mos27-Mar-10 5:07
Dan Mos27-Mar-10 5:07 
GeneralRe: update Dictionary with new KeyValuePair set Pin
igalep13227-Mar-10 5:07
igalep13227-Mar-10 5:07 
GeneralRe: update Dictionary with new KeyValuePair set Pin
Dan Mos27-Mar-10 5:32
Dan Mos27-Mar-10 5:32 
GeneralRe: update Dictionary with new KeyValuePair set Pin
igalep13227-Mar-10 5:35
igalep13227-Mar-10 5:35 
GeneralRe: update Dictionary with new KeyValuePair set Pin
Dan Mos27-Mar-10 5:42
Dan Mos27-Mar-10 5:42 
GeneralRe: update Dictionary with new KeyValuePair set Pin
igalep13227-Mar-10 5:45
igalep13227-Mar-10 5:45 
AnswerRe: update Dictionary with new KeyValuePair set Pin
Daniel Grunwald27-Mar-10 7:18
Daniel Grunwald27-Mar-10 7:18 
Your question does not make sense. A dictionary does not have any defined order.
Yes you can get the pairs out of a dictionary and sort them. But if you insert them in a new/cleared dictionary, there's no guarantee they will keep that order.
The dictionary class is allowed to reorder elements as it sees fit (to make loopup faster). Often the order of insertion is preserved, but it's not guaranteed.
If you need your pairs to stay in sorted order, don't use a dictionary. Either use a List<KeyValuePair<...>>, or (if sorting by key) use a SortedDictionary<...>.
GeneralRe: update Dictionary with new KeyValuePair set Pin
PIEBALDconsult27-Mar-10 17:23
mvePIEBALDconsult27-Mar-10 17:23 
QuestionHow can i know from which interface the method is calling? Pin
Satish - Developer27-Mar-10 2:46
Satish - Developer27-Mar-10 2:46 
AnswerRe: How can i know from which interface the method is calling? Pin
Nuri Ismail27-Mar-10 3:03
Nuri Ismail27-Mar-10 3:03 
AnswerRe: How can i know from which interface the method is calling? Pin
AspDotNetDev27-Mar-10 3:13
protectorAspDotNetDev27-Mar-10 3:13 
QuestionHow to write the design editor? Pin
yu-jian27-Mar-10 1:34
yu-jian27-Mar-10 1:34 
AnswerRe: How to write the design editor? Pin
yu-jian28-Mar-10 3:34
yu-jian28-Mar-10 3:34 
GeneralRe: How to write the design editor? Pin
OriginalGriff28-Mar-10 4:10
mveOriginalGriff28-Mar-10 4:10 
QuestionA question on SqlCommand.CommandText Pin
Dewald26-Mar-10 23:01
Dewald26-Mar-10 23:01 
AnswerRe: A question on SqlCommand.CommandText [modified] Pin
Dan Mos27-Mar-10 0:24
Dan Mos27-Mar-10 0:24 
AnswerRe: A question on SqlCommand.CommandText Pin
#realJSOP27-Mar-10 1:29
mve#realJSOP27-Mar-10 1:29 
AnswerRe: A question on SqlCommand.CommandText Pin
PIEBALDconsult27-Mar-10 4:28
mvePIEBALDconsult27-Mar-10 4:28 
QuestionCompress a Folder using GZipStream Pin
anishkannan26-Mar-10 21:57
anishkannan26-Mar-10 21:57 
AnswerRe: Compress a Folder using GZipStream Pin
Richard MacCutchan26-Mar-10 23:05
mveRichard MacCutchan26-Mar-10 23:05 
GeneralRe: Compress a Folder using GZipStream Pin
AspDotNetDev26-Mar-10 23:23
protectorAspDotNetDev26-Mar-10 23:23 
GeneralRe: Compress a Folder using GZipStream Pin
Richard MacCutchan26-Mar-10 23:44
mveRichard MacCutchan26-Mar-10 23:44 
GeneralRe: Compress a Folder using GZipStream Pin
AspDotNetDev26-Mar-10 23:53
protectorAspDotNetDev26-Mar-10 23:53 
GeneralRe: Compress a Folder using GZipStream Pin
Richard MacCutchan27-Mar-10 3:19
mveRichard MacCutchan27-Mar-10 3:19 

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.