¡@

Home 

c# Programming Glossary: fragmentation

Force garbage collection of arrays, C#

http://stackoverflow.com/questions/1104352/force-garbage-collection-of-arrays-c-sharp

real amount allocated . I will suspect you may have memory fragmentation . If the object is large 85000 bytes under .net 2.0 CLR if I.. array which in fact resides in a larger array to avoid fragmentation. This may help a little bit yet it may not completely solve..

Refactoring code to avoid anti-pattern

http://stackoverflow.com/questions/11224170/refactoring-code-to-avoid-anti-pattern

single responsibility principle how can i avoid code fragmentation c# .net design patterns domain driven design cqrs share improve..

How do I access ARP-protocol information through .NET?

http://stackoverflow.com/questions/1148778/how-do-i-access-arp-protocol-information-through-net

Use the default Ttl value which is 128 but change the fragmentation behavior. options.DontFragment true Create a buffer of 32 bytes..

'System.OutOfMemoryException' was thrown when there is still plenty of memory free

http://stackoverflow.com/questions/1153702/system-outofmemoryexception-was-thrown-when-there-is-still-plenty-of-memory-fr

requirements would help if the issue is due to memory fragmentation but it doesn't I can't get past a total ArrayList size of 256mb..

Deciding on when to use XmlDocument vs XmlReader

http://stackoverflow.com/questions/1505075/deciding-on-when-to-use-xmldocument-vs-xmlreader

XPathDocument can suffer from large object heap fragmentation which can ultimately lead to OutOfMemoryException s even with..

Random playlist algorithm

http://stackoverflow.com/questions/1816534/random-playlist-algorithm

of times it needs to ask the OS for more RAM and to limit fragmentation. EDIT Okay last try we can look to tweak the performance memory..

When is it OK to catch an OutOfMemoryException and how to handle it?

http://stackoverflow.com/questions/2117142/when-is-it-ok-to-catch-an-outofmemoryexception-and-how-to-handle-it

edit... Out of memory may be caused by unmanaged memory fragmentation and pinning. It can also be caused by large allocation requests...

Is it worthwhile to initialize the collection size of a List<T> if it's size reasonably known?

http://stackoverflow.com/questions/2247773/is-it-worthwhile-to-initialize-the-collection-size-of-a-listt-if-its-size-rea

awkward released blocks in the Large Object Heap and avoid fragmentation. In effect you'll be able to store many more objects in the..

What causes memory fragmentation in .NET

http://stackoverflow.com/questions/5240860/what-causes-memory-fragmentation-in-net

causes memory fragmentation in .NET I am using Red Gates ANTS memory profiler to debug.. are some standard coding practices that help avoid memory fragmentation. Can you defragment it through some .NET methods Would it even.. Would it even help c# .net memory management memory leaks fragmentation share improve this question You know I somewhat doubt the..

Why am I getting an Out Of Memory Exception in my C# application?

http://stackoverflow.com/questions/597499/why-am-i-getting-an-out-of-memory-exception-in-my-c-sharp-application

.NET Memory issues loading ~40 images, memory not reclaimed, potentially due to LOH fragmentation

http://stackoverflow.com/questions/6271891/net-memory-issues-loading-40-images-memory-not-reclaimed-potentially-due-to

~40 images memory not reclaimed potentially due to LOH fragmentation Well this is my first foray into memory profiling a .NET app.. memory is coming from. My two current theories are LOH fragmentation. If I navigate away from the paged view and click a couple of..

Large Object Heap Fragmentation

http://stackoverflow.com/questions/686950/large-object-heap-fragmentation

It does do this and I accept there will be a degree of LOH fragmentation but that is not the problem here. The problem is the very small.. see accepted answer the problem has been identified as fragmentation of the LOH caused by the string intern table I wrote a quick.. of a finite set then your application will leak due to fragmentation of the LOH at least in version 2 of the CLR. In our application's..

Garbage collection in .NET (generations)

http://stackoverflow.com/questions/978711/garbage-collection-in-net-generations

in a garbage collector is to avoid losing memory to fragmentation. Every function call can mean the creation and deletion collection.. left it up to the operating system to manage any memory fragmentation. The reason an object survives collection is because there is..