Using SafeHandles in Structs via Stateful Marshalling
SafeHandles provide reliable and secure means of managing the lifetime of unmanaged resources. It’s commonly recommended to use SafeHandle instead […]
Contains software development articles not directly related to Omnified design and hacking, although this isn’t to say that some of the technology being discussed isn’t used by an Omnified system or platform.
These articles are meant to appeal to a wider software developer audience and most typically consist of topics pertaining to .NET and C# development, which are my weapons of choice in my professional life.
SafeHandles provide reliable and secure means of managing the lifetime of unmanaged resources. It’s commonly recommended to use SafeHandle instead […]
Except for the most basic applications, we often need to bundle one or more resources with our programs or libraries. […]
A quadtree is a tree data structure in which each node has either zero or four children nodes. If the number of […]
.NET 7 has just been released! If you’re like me, you like to get everything updated to the latest as […]
Previously, I wrote an article that showed how to add support for custom game data by extending MonoGame’s content pipeline. […]