Click here to Skip to main content
15,896,500 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Erro while trying to open an application in VS.Net 1.1 Pin
meeram39510-Jun-10 5:13
meeram39510-Jun-10 5:13 
GeneralRe: Erro while trying to open an application in VS.Net 1.1 Pin
Luc Pattyn10-Jun-10 5:18
sitebuilderLuc Pattyn10-Jun-10 5:18 
AnswerRe: Erro while trying to open an application in VS.Net 1.1 Pin
T M Gray10-Jun-10 10:57
T M Gray10-Jun-10 10:57 
QuestionMemory allocation for List Pin
sujithkumarsl9-Jun-10 22:45
sujithkumarsl9-Jun-10 22:45 
AnswerRe: Memory allocation for List Pin
Peace ON9-Jun-10 23:05
Peace ON9-Jun-10 23:05 
AnswerRe: Memory allocation for List Pin
Luc Pattyn10-Jun-10 1:42
sitebuilderLuc Pattyn10-Jun-10 1:42 
AnswerRe: Memory allocation for List Pin
Anshul R10-Jun-10 20:05
Anshul R10-Jun-10 20:05 
GeneralRe: Memory allocation for List Pin
Luc Pattyn11-Jun-10 1:51
sitebuilderLuc Pattyn11-Jun-10 1:51 
pranav95 wrote:
It is like a linked list


Not at all. A linked list would consist of individual items, each holding one or two pointers to its logical neighbors, and would imply: a separate memory block for each item, no overall memory requirement (except maybe for a head node and a tail node), and certainly no memory requirement larger than the item size itself. A .NET collection is based on an array, most additions do not require any memory requirement at all, and the array's capacity grows by doubling it, which may cause it to become located in the "large object heap" and may even cause fragmentation and out-of-memory situations one would not have with a linked list; OTOH being array-based has advantages, e.g. it allows for an O(1) indexing.

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

I only read formatted code with indentation, so please use PRE tags for code snippets.

I'm not participating in frackin' Q&A, so if you want my opinion, ask away in a real forum (or on my profile page).

QuestionValue type in Stack??? Pin
sujithkumarsl9-Jun-10 20:44
sujithkumarsl9-Jun-10 20:44 
AnswerRe: Value type in Stack??? Pin
Richard MacCutchan9-Jun-10 21:32
mveRichard MacCutchan9-Jun-10 21:32 
AnswerRe: Value type in Stack??? Pin
LookSharp11-Jun-10 16:00
LookSharp11-Jun-10 16:00 
QuestionHow to hide Data Directory in VB 2.0 Pin
cyberexel9-Jun-10 15:37
cyberexel9-Jun-10 15:37 
AnswerRe: How to hide Data Directory in VB 2.0 Pin
Dave Kreskowiak9-Jun-10 17:19
mveDave Kreskowiak9-Jun-10 17:19 
GeneralRe: How to hide Data Directory in vs VB 2005 Pin
cyberexel12-Jun-10 18:08
cyberexel12-Jun-10 18:08 
GeneralRe: How to hide Data Directory in vs VB 2005 Pin
Pete O'Hanlon13-Jun-10 4:11
mvePete O'Hanlon13-Jun-10 4:11 
GeneralRe: How to hide Data Directory in vs VB 2005 Pin
Dave Kreskowiak13-Jun-10 5:17
mveDave Kreskowiak13-Jun-10 5:17 
GeneralRe: How to hide Data Directory in vs VB 2005 Pin
cyberexel14-Jun-10 23:16
cyberexel14-Jun-10 23:16 
Questioncombobox selected index chaged code Pin
prashanth pola9-Jun-10 2:08
prashanth pola9-Jun-10 2:08 
AnswerRe: combobox selected index chaged code Pin
DaveyM699-Jun-10 2:19
professionalDaveyM699-Jun-10 2:19 
AnswerRe: combobox selected index chaged code Pin
Anshul R9-Jun-10 3:46
Anshul R9-Jun-10 3:46 
GeneralRe: combobox selected index chaged code Pin
prashanth pola10-Jun-10 2:01
prashanth pola10-Jun-10 2:01 
GeneralRe: combobox selected index chaged code Pin
Anshul R10-Jun-10 20:08
Anshul R10-Jun-10 20:08 
AnswerRe: combobox selected index chaged code Pin
Not Active9-Jun-10 6:52
mentorNot Active9-Jun-10 6:52 
GeneralRe: combobox selected index chaged code Pin
prashanth pola10-Jun-10 2:44
prashanth pola10-Jun-10 2:44 
Question.net framework Pin
prashanth pola9-Jun-10 2:02
prashanth pola9-Jun-10 2: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.