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

.NET (Core and Framework)

 
AnswerRe: In C# what is the best method to parse large XML Documents(1GB size)...? Pin
malk0lm23-Jan-09 12:36
malk0lm23-Jan-09 12:36 
QuestionImportant question about garbage collector in .net Framework ... Pin
Yanshof22-Jan-09 10:48
Yanshof22-Jan-09 10:48 
AnswerRe: Important question about garbage collector in .net Framework ... Pin
Jon Rista22-Jan-09 10:57
Jon Rista22-Jan-09 10:57 
GeneralRe: Important question about garbage collector in .net Framework ... Pin
Yanshof22-Jan-09 11:18
Yanshof22-Jan-09 11:18 
GeneralRe: Important question about garbage collector in .net Framework ... Pin
Luc Pattyn22-Jan-09 12:40
sitebuilderLuc Pattyn22-Jan-09 12:40 
GeneralRe: Important question about garbage collector in .net Framework ... Pin
Jon Rista23-Jan-09 4:42
Jon Rista23-Jan-09 4:42 
GeneralRe: Important question about garbage collector in .net Framework ... Pin
supercat923-Jan-09 6:25
supercat923-Jan-09 6:25 
GeneralRe: Important question about garbage collector in .net Framework ... Pin
Jon Rista23-Jan-09 7:14
Jon Rista23-Jan-09 7:14 
Static types and fields are stored in what is called a Loader Heap. Loader heaps are separate from the normal GC heap, and are managed in a different way. They are not garbage collected (since they are static and live for the duration of the app, there is no need), and space for statics is preallocated when the AppDomain is loaded. If a Static member contains a reference to another, non-static object...the object that is referenced is actually stored on the GC heap. Static fields and methods are keept on loader heaps because they are considered part of the type system (wich is the primary purpose for loader heaps...to store type metadata, vtables, etc.) Its actually an interesting distinction between static and instance types.

Given that this thread has diverged from simple answers, perhapse the following link will be helpful to everyone. It explains the CLR, GC, and type system in detail:

http://msdn.microsoft.com/en-us/magazine/cc163791.aspx
Questionrelative of IIS Pin
ferronrsmith22-Jan-09 10:37
ferronrsmith22-Jan-09 10:37 
AnswerRe: relative of IIS Pin
Not Active22-Jan-09 11:31
mentorNot Active22-Jan-09 11:31 
GeneralRe: relative of IIS Pin
ferronrsmith22-Jan-09 11:41
ferronrsmith22-Jan-09 11:41 
GeneralRe: relative of IIS Pin
malk0lm23-Jan-09 12:36
malk0lm23-Jan-09 12:36 
QuestionHow do I get a grid control to see MyDataView's column definitions? Pin
ThomasBates22-Jan-09 10:09
ThomasBates22-Jan-09 10:09 
Questioncheck this Pin
kulandaivel_mca200721-Jan-09 22:57
kulandaivel_mca200721-Jan-09 22:57 
AnswerRe: check this Pin
Abhijit Jana21-Jan-09 23:41
professionalAbhijit Jana21-Jan-09 23:41 
AnswerConnectionStrings (original topic wasn't descriptive enough.. Not that this one is, but perhaps it shows some more detail) Pin
Eddy Vluggen22-Jan-09 0:53
professionalEddy Vluggen22-Jan-09 0:53 
AnswerRe: check this [modified] Pin
Wendelius22-Jan-09 1:34
mentorWendelius22-Jan-09 1:34 
GeneralRe: check this Pin
kulandaivel_mca200722-Jan-09 2:01
kulandaivel_mca200722-Jan-09 2:01 
GeneralRe: check this Pin
Wendelius22-Jan-09 2:06
mentorWendelius22-Jan-09 2:06 
GeneralRe: check this Pin
kulandaivel_mca200722-Jan-09 2:28
kulandaivel_mca200722-Jan-09 2:28 
GeneralRe: check this Pin
Wendelius22-Jan-09 2:36
mentorWendelius22-Jan-09 2:36 
GeneralRe: check this Pin
kulandaivel_mca200722-Jan-09 2:47
kulandaivel_mca200722-Jan-09 2:47 
GeneralRe: check this Pin
Wendelius22-Jan-09 2:54
mentorWendelius22-Jan-09 2:54 
GeneralRe: check this Pin
kulandaivel_mca200722-Jan-09 3:17
kulandaivel_mca200722-Jan-09 3:17 
GeneralRe: check this Pin
Wendelius22-Jan-09 3:20
mentorWendelius22-Jan-09 3:20 

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.