Files
2026-08-27 10:56:38 -06:00

10 lines
150 B
C#

using System.Runtime.InteropServices;
namespace System;
[StructLayout(LayoutKind.Sequential)]
internal sealed class Pinnable<T>
{
public T Data;
}