PreviousNext

Avoiding and fixing unexpected memory issues in .NET applications

by bill-s, 2013-11-02T19:15:18.000Z

Working in .NET certainly does simplify memory management, but it doesn’t remove the problem entirely. At minimum, an understanding of garbage collection and the object heaps helps you avoid nasty performance overheads from managing memory. But you’re also likely to encounter issues with unmanaged memory, which you may not realise you’re using.

Read More