10 lines
150 B
C#
10 lines
150 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace System;
|
|
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal sealed class Pinnable<T>
|
|
{
|
|
public T Data;
|
|
}
|