mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-02-14 21:34:53 +00:00
17 lines
320 B
C#
17 lines
320 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.IO.Test.Extensions
|
|
{
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
internal struct TestStructSequential
|
|
{
|
|
public int FirstValue;
|
|
|
|
public int SecondValue;
|
|
|
|
public ushort ThirdValue;
|
|
|
|
public short FourthValue;
|
|
}
|
|
}
|