23 lines
433 B
C#
23 lines
433 B
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Net.NetworkInformation
|
|
{
|
|
// Token: 0x020001C6 RID: 454
|
|
[StructLayout(LayoutKind.Explicit)]
|
|
internal struct AlignmentUnion
|
|
{
|
|
// Token: 0x04000D34 RID: 3380
|
|
[FieldOffset(0)]
|
|
public ulong Alignment;
|
|
|
|
// Token: 0x04000D35 RID: 3381
|
|
[FieldOffset(0)]
|
|
public int Length;
|
|
|
|
// Token: 0x04000D36 RID: 3382
|
|
[FieldOffset(4)]
|
|
public int IfIndex;
|
|
}
|
|
}
|