Skip to content

Instantly share code, notes, and snippets.

@ocoanet
Created August 6, 2019 11:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ocoanet/759c45fd48f3a242cca930995d20d7e9 to your computer and use it in GitHub Desktop.
Save ocoanet/759c45fd48f3a242cca930995d20d7e9 to your computer and use it in GitHub Desktop.
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public T Read<T>()
{
if (!RuntimeHelpers.IsReferenceOrContainsReferences<T>() && Unsafe.SizeOf<T>() <= 16)
return Unsafe.As<Padding16, T>(ref _valueStorage);
return (T)_defaultStorage;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment