Click here to Skip to main content
16,004,761 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to select max(String)from sqlserver Pin
Thaer Hamael28-Jul-07 5:41
Thaer Hamael28-Jul-07 5:41 
GeneralRe: How to select max(String)from sqlserver Pin
User 665828-Jul-07 5:58
User 665828-Jul-07 5:58 
GeneralRe: How to select max(String)from sqlserver Pin
Paul Conrad28-Jul-07 6:26
professionalPaul Conrad28-Jul-07 6:26 
GeneralRe: How to select max(String)from sqlserver Pin
Paul Conrad28-Jul-07 6:23
professionalPaul Conrad28-Jul-07 6:23 
QuestionList vs LinkedList Pin
User 665828-Jul-07 4:48
User 665828-Jul-07 4:48 
AnswerRe: List<T> vs LinkedList<T> Pin
Urs Enzler28-Jul-07 4:54
Urs Enzler28-Jul-07 4:54 
GeneralRe: List<T> vs LinkedList<T> Pin
User 665828-Jul-07 5:12
User 665828-Jul-07 5:12 
AnswerRe: List vs LinkedList Pin
Guffa28-Jul-07 5:59
Guffa28-Jul-07 5:59 
In a LinkedList, each item is contained in a LinkedListNode object. The node contains references to the previous and next nodes, and to the list. Including the two references that every object instance contains, it's an overhead of 20 bytes (on a 32 bit system).

In a List, there is no overhead per item, only the overhead of allocated but unused entries.

So, storing 1000 bytes in a List uses 1024 bytes, but storing them in a LinkedList uses (at least) 24000 bytes.

---
single minded; short sighted; long gone;

GeneralRe: List vs LinkedList Pin
User 665828-Jul-07 8:26
User 665828-Jul-07 8:26 
Questionhow get the mouse location Pin
foxch28-Jul-07 4:05
foxch28-Jul-07 4:05 
AnswerRe: how get the mouse location Pin
User 665828-Jul-07 4:45
User 665828-Jul-07 4:45 
GeneralRe: how get the mouse location Pin
foxch28-Jul-07 5:03
foxch28-Jul-07 5:03 
AnswerRe: how get the mouse location Pin
Luc Pattyn28-Jul-07 5:10
sitebuilderLuc Pattyn28-Jul-07 5:10 
AnswerRe: how get the mouse location Pin
Thomas Stockwell28-Jul-07 14:34
professionalThomas Stockwell28-Jul-07 14:34 
QuestionGetting installed browser user agents in a Windows Forms program Pin
Domenic Denicola28-Jul-07 2:55
Domenic Denicola28-Jul-07 2:55 
AnswerRe: Getting installed browser user agents in a Windows Forms program Pin
ekynox28-Jul-07 17:42
ekynox28-Jul-07 17:42 
GeneralRe: Getting installed browser user agents in a Windows Forms program Pin
Domenic Denicola29-Jul-07 8:10
Domenic Denicola29-Jul-07 8:10 
QuestionAsychronous call to URL behind the scene without redirecting to the page Pin
Amvir28-Jul-07 2:38
Amvir28-Jul-07 2:38 
AnswerRe: Asychronous call to URL behind the scene without redirecting to the page Pin
ne0h28-Jul-07 4:48
ne0h28-Jul-07 4:48 
Questionhow deployee c#.net desktop application [modified] Pin
hk7792128-Jul-07 2:28
hk7792128-Jul-07 2:28 
AnswerRe: how deployee c#.net desktop application Pin
Kevin McFarlane28-Jul-07 3:05
Kevin McFarlane28-Jul-07 3:05 
QuestionHey, a question Pin
XFighter28-Jul-07 1:43
XFighter28-Jul-07 1:43 
AnswerRe: Hey, a question Pin
Colin Angus Mackay28-Jul-07 3:33
Colin Angus Mackay28-Jul-07 3:33 
Questioncoding guidelines question Pin
thepersonof28-Jul-07 0:48
thepersonof28-Jul-07 0:48 
AnswerRe: coding guidelines question Pin
Luc Pattyn28-Jul-07 0:56
sitebuilderLuc Pattyn28-Jul-07 0:56 

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.