mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-09-22 22:56:13 +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;
|
||
|
|
}
|
||
|
|
}
|