add syntax highlighting

This commit is contained in:
Nicholas Orlowsky 2023-08-20 13:47:57 -05:00
parent d37c2c05cd
commit 8fd2a381b8
No known key found for this signature in database
GPG key ID: 24C84C4DDAD95065
8 changed files with 57 additions and 15 deletions

View file

@ -65,6 +65,11 @@ unsafe
</code></pre>
<p>In .NET 6, the <code>NativeMemory</code> class was introduced which you can read about <a href="https://docs.microsoft.com/en-us/dotnet/api/system.runtime.interopservices.nativememory.alloc?view=net-6.0">here</a>. It allows for malloc-like memory allocation and freeing which can be important for high-performance workloads.</p>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/dark.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
<script>hljs.highlightAll();</script>
<footer>
<hr />
<p style="margin-bottom: 0px;">Copyright &#169; Nicholas Orlowsky 2023</p>