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

.NET (Core and Framework)

 
GeneralRe: How to code MultiThreading into 4 Processors in vb.net? Pin
DND7-Oct-09 3:34
DND7-Oct-09 3:34 
GeneralRe: How to code MultiThreading into 4 Processors in vb.net? Pin
Dave Kreskowiak7-Oct-09 5:13
mveDave Kreskowiak7-Oct-09 5:13 
GeneralRe: How to code MultiThreading into 4 Processors in vb.net? Pin
N a v a n e e t h7-Oct-09 5:49
N a v a n e e t h7-Oct-09 5:49 
AnswerRe: How to code MultiThreading into 4 Processors in vb.net? Pin
Luc Pattyn7-Oct-09 6:46
sitebuilderLuc Pattyn7-Oct-09 6:46 
AnswerRe: How to code MultiThreading into 4 Processors in vb.net? Pin
Shameel19-Oct-09 0:20
professionalShameel19-Oct-09 0:20 
QuestionGarbage Collection Pin
KSR816-Oct-09 12:57
KSR816-Oct-09 12:57 
AnswerRe: Garbage Collection Pin
raghu.g6-Oct-09 17:56
raghu.g6-Oct-09 17:56 
AnswerRe: Garbage Collection Pin
N a v a n e e t h6-Oct-09 18:03
N a v a n e e t h6-Oct-09 18:03 
AFAIK, There are 3 generations, zero, one and two.

All newly allocated objects goes into generation-0. GC walks though the object tree and marks all objects that are reachable. Garbage collection usually takes place in this generation. All the objects that are marked reachable will be promoted to generation-1 assuming these objects are long-living. unreachable objects will be cleaned up and GC compacts the heap. If these objects are again surviving collection, they will be promoted to generation-2. Garbage collection occurs very rarely on generation-2.

This generational algorithm helps GC to work efficiently. When memory is required, GC only needs to scan the generation-0 to free up the memory and other generations are scanned only when necessary. This will avoid scanning all objects that are present for an application.


AnswerRe: Garbage Collection Pin
supercat97-Oct-09 7:44
supercat97-Oct-09 7:44 
GeneralRe: Garbage Collection Pin
KSR817-Oct-09 11:15
KSR817-Oct-09 11:15 
QuestionNCoverExplorer Report & MSBuild Pin
Jammer6-Oct-09 10:48
Jammer6-Oct-09 10:48 
AnswerRe: NCoverExplorer Report & MSBuild [modified] Pin
Ergwun9-Jun-10 21:18
Ergwun9-Jun-10 21:18 
QuestionMemory leak in VB.NET screenshot application Pin
Jordan19826-Oct-09 4:10
Jordan19826-Oct-09 4:10 
AnswerRe: Memory leak in VB.NET screenshot application Pin
Dave Kreskowiak6-Oct-09 4:39
mveDave Kreskowiak6-Oct-09 4:39 
GeneralRe: Memory leak in VB.NET screenshot application Pin
Jordan19826-Oct-09 5:00
Jordan19826-Oct-09 5:00 
AnswerRe: Memory leak in VB.NET screenshot application Pin
Luc Pattyn6-Oct-09 5:39
sitebuilderLuc Pattyn6-Oct-09 5:39 
Questioncopy functionality does not work in CrystalReportViewer Pin
maryam.saboor6-Oct-09 1:02
professionalmaryam.saboor6-Oct-09 1:02 
QuestionBroken Clipping Region Pin
RichardM15-Oct-09 15:26
RichardM15-Oct-09 15:26 
QuestionCustom file format - how to let Windows recognize properties like labels? Pin
pimb24-Oct-09 8:45
pimb24-Oct-09 8:45 
AnswerRe: Custom file format - how to let Windows recognize properties like labels? Pin
Richard MacCutchan5-Oct-09 1:01
mveRichard MacCutchan5-Oct-09 1:01 
GeneralRe: Custom file format - how to let Windows recognize properties like labels? Pin
pimb25-Oct-09 5:17
pimb25-Oct-09 5:17 
GeneralRe: Custom file format - how to let Windows recognize properties like labels? Pin
Richard MacCutchan5-Oct-09 6:25
mveRichard MacCutchan5-Oct-09 6:25 
GeneralRe: Custom file format - how to let Windows recognize properties like labels? Pin
pimb25-Oct-09 6:30
pimb25-Oct-09 6:30 
AnswerRe: Custom file format - how to let Windows recognize properties like labels? Pin
Richard MacCutchan5-Oct-09 7:22
mveRichard MacCutchan5-Oct-09 7:22 
GeneralRe: Custom file format - how to let Windows recognize properties like labels? Pin
Richard MacCutchan7-Oct-09 0:49
mveRichard MacCutchan7-Oct-09 0:49 

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.