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

C#

 
QuestionHow to select max(String)from sqlserver Pin
Thaer Hamael28-Jul-07 5:33
Thaer Hamael28-Jul-07 5:33 
AnswerRe: How to select max(String)from sqlserver Pin
Paul Conrad28-Jul-07 5:35
professionalPaul Conrad28-Jul-07 5:35 
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 
LinkedList: every item knwos its successor and its precessor, start end end of list are directly accessible.

List: more or less a "fixed" size array

Some consequences:

Adding to LinkedList (at the end is) as moving the next or previous item are simple opperations and therefore fast. The List has to be grown to fit all items.

Accessing an item at a specific position is faster in List. In LinkedList the chain of items has to be followed.

Maybe there are some optimizations included that I'm unaware of, so if you know better, let me know Smile | :)

-^-^-^-^-^-
no risk no funk

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 
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 

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.