Click here to Skip to main content
15,920,005 members
Home / Discussions / C#
   

C#

 
AnswerRe: what to do after a read from a socket Timeout Pin
freakyit25-Jun-10 3:21
freakyit25-Jun-10 3:21 
GeneralRe: what to do after a read from a socket Timeout Pin
manustone29-Jun-10 23:16
manustone29-Jun-10 23:16 
AnswerRe: what to do after a read from a socket Timeout Pin
Ennis Ray Lynch, Jr.25-Jun-10 4:15
Ennis Ray Lynch, Jr.25-Jun-10 4:15 
GeneralRe: what to do after a read from a socket Timeout Pin
manustone29-Jun-10 23:16
manustone29-Jun-10 23:16 
QuestionCollection of unique ids Pin
Chiman125-Jun-10 0:38
Chiman125-Jun-10 0:38 
AnswerRe: Collection of unique ids Pin
Luc Pattyn25-Jun-10 0:51
sitebuilderLuc Pattyn25-Jun-10 0:51 
AnswerRe: Collection of unique ids Pin
OkkiePepernoot25-Jun-10 0:52
OkkiePepernoot25-Jun-10 0:52 
AnswerRe: Collection of unique ids Pin
David Skelly25-Jun-10 2:03
David Skelly25-Jun-10 2:03 
One slight caveat with HashSet: the data in a HashSet is not sorted. You cannot guarantee what order the entries will be in when you enumerate over them. If that doesn't matter to you, HashSet is great. If the order matters, then you could use SortedSet (which would sort them in numeric sequence). If you need them in some other order (e.g. the order in which they were added) you may be better off building your own UniqueList (which isn't hard to do, just an IList wrapper around List to check if the entry is already there when you add it).
QuestionCom Exception - excel Pin
KaurGurpreet24-Jun-10 23:26
KaurGurpreet24-Jun-10 23:26 
AnswerRe: Com Exception - excel Pin
freakyit24-Jun-10 23:38
freakyit24-Jun-10 23:38 
GeneralRe: Com Exception - excel Pin
KaurGurpreet25-Jun-10 0:00
KaurGurpreet25-Jun-10 0:00 
AnswerRe: Com Exception - excel Pin
OkkiePepernoot25-Jun-10 0:30
OkkiePepernoot25-Jun-10 0:30 
GeneralRe: Com Exception - excel Pin
KaurGurpreet25-Jun-10 0:35
KaurGurpreet25-Jun-10 0:35 
GeneralRe: Com Exception - excel Pin
OkkiePepernoot25-Jun-10 0:45
OkkiePepernoot25-Jun-10 0:45 
GeneralRe: Com Exception - excel Pin
KaurGurpreet25-Jun-10 0:52
KaurGurpreet25-Jun-10 0:52 
GeneralRe: Com Exception - excel Pin
freakyit25-Jun-10 3:25
freakyit25-Jun-10 3:25 
GeneralRe: Com Exception - excel Pin
KaurGurpreet27-Jun-10 19:07
KaurGurpreet27-Jun-10 19:07 
GeneralRe: Com Exception - excel Pin
EliottA25-Jun-10 3:31
EliottA25-Jun-10 3:31 
AnswerRe: Com Exception - excel Pin
KaurGurpreet27-Jun-10 19:23
KaurGurpreet27-Jun-10 19:23 
GeneralRe: Com Exception - excel Pin
EliottA28-Jun-10 1:25
EliottA28-Jun-10 1:25 
GeneralRe: Com Exception - excel Pin
KaurGurpreet28-Jun-10 2:09
KaurGurpreet28-Jun-10 2:09 
GeneralRe: Com Exception - excel Pin
EliottA28-Jun-10 2:18
EliottA28-Jun-10 2:18 
Question"Unable to load the project file xx.csproj" Pin
Emmet_Brown24-Jun-10 22:36
Emmet_Brown24-Jun-10 22:36 
AnswerRe: "Unable to load the project file xx.csproj" Pin
Praveen Raghuvanshi24-Jun-10 22:49
professionalPraveen Raghuvanshi24-Jun-10 22:49 
GeneralRe: "Unable to load the project file xx.csproj" Pin
Emmet_Brown24-Jun-10 23:02
Emmet_Brown24-Jun-10 23:02 

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.