Skip to content

Instantly share code, notes, and snippets.

@medigor
Created January 21, 2021 22:14
Show Gist options
  • Save medigor/c2a6c8bb66ecdaecd481544be741e9d6 to your computer and use it in GitHub Desktop.
Save medigor/c2a6c8bb66ecdaecd481544be741e9d6 to your computer and use it in GitHub Desktop.
#nowarn "9"
open System
open System.Runtime.CompilerServices
open System.Runtime.InteropServices
open Microsoft.FSharp.NativeInterop
let readGuid(bytes: byte []): Guid =
use ptr = fixed bytes
ptr
|> NativePtr.toVoidPtr
|> Unsafe.ReadUnaligned<Guid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment