Click here to Skip to main content
16,016,760 members
Home / Discussions / C#
   

C#

 
GeneralRe: Detecting when user has changed selection to another row (single selection item grid) Pin
led mike31-Oct-08 4:55
led mike31-Oct-08 4:55 
GeneralRe: Detecting when user has changed selection to another row (single selection item grid) Pin
Ashfield31-Oct-08 5:55
Ashfield31-Oct-08 5:55 
QuestionHow I Change Menu Css on page load Event OR Runtime Pin
IshtiaqueJ31-Oct-08 2:30
IshtiaqueJ31-Oct-08 2:30 
AnswerRe: How I Change Menu Css on page load Event OR Runtime Pin
Krazy Programmer31-Oct-08 2:53
Krazy Programmer31-Oct-08 2:53 
AnswerRe: How I Change Menu Css on page load Event OR Runtime Pin
leppie31-Oct-08 2:57
leppie31-Oct-08 2:57 
GeneralServiceController remote access, impersonation Pin
laserbaronen31-Oct-08 2:20
laserbaronen31-Oct-08 2:20 
QuestionDictionary size issue Pin
George_George31-Oct-08 2:16
George_George31-Oct-08 2:16 
AnswerRe: Dictionary size issue Pin
Luc Pattyn31-Oct-08 2:25
sitebuilderLuc Pattyn31-Oct-08 2:25 
Hi George,

I haven't used any memory-based data structure larger than my system's physical
memory, and I don't plan to do so any time soon: the data structure would be
loaded into (virtual) memory and immediately swapped out to the page file on
disk again, yielding bad system performance.

Whenever you need large amounts of data, and certainly if you are using
only small parts of it at a time, use a database. SQLServer Express is freely
available, and SQL queries can be organized in all popular .NET languages.

BTW: A dictionary is no different from any other data structure as far as memory
behavior goes; data structures don't decide themselves on whether they get
swapped out. It is the memory manager that decides on these mathers,
irrespective of the structures or classes involved.

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

Fixturized forever. Confused | :confused:


GeneralRe: Dictionary size issue Pin
George_George31-Oct-08 2:32
George_George31-Oct-08 2:32 
GeneralRe: Dictionary size issue Pin
Luc Pattyn31-Oct-08 2:44
sitebuilderLuc Pattyn31-Oct-08 2:44 
GeneralRe: Dictionary size issue Pin
George_George31-Oct-08 3:35
George_George31-Oct-08 3:35 
GeneralRe: Dictionary size issue Pin
Luc Pattyn31-Oct-08 3:42
sitebuilderLuc Pattyn31-Oct-08 3:42 
GeneralRe: Dictionary size issue Pin
Alan Balkany31-Oct-08 3:53
Alan Balkany31-Oct-08 3:53 
GeneralRe: Dictionary size issue Pin
George_George31-Oct-08 3:56
George_George31-Oct-08 3:56 
GeneralRe: Dictionary size issue Pin
George_George31-Oct-08 3:55
George_George31-Oct-08 3:55 
GeneralRe: Dictionary size issue Pin
Luc Pattyn31-Oct-08 5:04
sitebuilderLuc Pattyn31-Oct-08 5:04 
GeneralRe: Dictionary size issue Pin
Giorgi Dalakishvili31-Oct-08 3:58
mentorGiorgi Dalakishvili31-Oct-08 3:58 
GeneralRe: Dictionary size issue Pin
George_George31-Oct-08 4:03
George_George31-Oct-08 4:03 
GeneralRe: Dictionary size issue Pin
Giorgi Dalakishvili31-Oct-08 4:08
mentorGiorgi Dalakishvili31-Oct-08 4:08 
GeneralRe: Dictionary size issue Pin
George_George31-Oct-08 4:21
George_George31-Oct-08 4:21 
GeneralRe: Dictionary size issue Pin
Giorgi Dalakishvili31-Oct-08 4:32
mentorGiorgi Dalakishvili31-Oct-08 4:32 
GeneralRe: Dictionary size issue Pin
George_George31-Oct-08 4:45
George_George31-Oct-08 4:45 
GeneralRe: Dictionary size issue Pin
Giorgi Dalakishvili31-Oct-08 8:18
mentorGiorgi Dalakishvili31-Oct-08 8:18 
GeneralRe: Dictionary size issue Pin
led mike31-Oct-08 4:34
led mike31-Oct-08 4:34 
GeneralRe: Dictionary size issue Pin
George_George31-Oct-08 4:42
George_George31-Oct-08 4:42 

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.