A new, fully featured, fully managed, cross-platform, 2D graphics API for .NET| www.nuget.org
Fantastic news, We've released our first beta!!| sixlabors.com
tl;dr Use Span to work with ANY kind of memory in a safe and very efficient way. Simplify your APIs and use the full power of unmanaged memory! Contents Introduction Introduction C# gives us great flexibility when it comes to using different kinds of memory. But the majority of the developers use only the managed one. Let’s take a brief look at what C# has to offer for us: Stack memory - allocated on the Stack with the stackalloc keyword. Very fast allocation and deallocation. The size of t...| adamsitnik.com