340,756 questions
60
votes
9
answers
6k
views
Compressing / Decompressing Folders & Files
Does anyone know of a good way to compress or decompress files and folders in C# quickly? Handling large files might be necessary.
182
votes
15
answers
16k
views
Anatomy of a "Memory Leak"
In .NET perspective:
What is a memory leak?
How can you determine whether your application leaks? What are the effects?
How can you prevent a memory leak?
If your application has memory leak, does it ...
517
votes
14
answers
196k
views
Difference between Math.Floor() and Math.Truncate()
What is the difference between Math.Floor() and Math.Truncate() in .NET?