Skip to content

Instantly share code, notes, and snippets.

@ocoanet
Created August 6, 2019 11:55
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/dc1c3f3d92aca395c594bfd685def940 to your computer and use it in GitHub Desktop.
Save ocoanet/dc1c3f3d92aca395c594bfd685def940 to your computer and use it in GitHub Desktop.
private static class TypeCache<T>
{
public static readonly bool CanUsePadding16 =
!IsReferenceOrContainsReferences(typeof(T)) && Unsafe.SizeOf<T>() <= 16;
// No static constructor
private static bool IsReferenceOrContainsReferences(Type type)
{
// Custom implementation using reflection
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment