namespace LSServerService { using System; using System.Runtime.InteropServices; [StructLayout(LayoutKind.Sequential, Pack=1)] public struct C2S_DeleteFile { public const uint ID = 22; public MsgHeader header; public int dwFileId; public C2S_DeleteFile(bool autoSet) { this.header = new MsgHeader(); this.dwFileId = 0; this.header.dwType = 22; this.header.dwLen = (uint) Marshal.SizeOf(this); } } }