C# memory management: unsafe keyword and pointers
As already mentioned by Conrad, there are some situations where unsafe access to memory in C# is useful. There are not as many of them, but there are some: Manipulating with Bitmap is almost a typical example where you need some additional performance that you can get by using unsafe. Interoperability with older API (such … Read more