public LocalVariableData(UInt32 Index, Byte[] Unused1, LocalVariableFlag Flags, Byte[] Unused2)
 {
     this.Index   = Index;
     this.Unused1 = Unused1;
     this.Flags   = Flags;
     this.Unused2 = Unused2;
 }
 public LocalVariableData(string Tag = null)
     : base(Tag)
 {
     Index   = new UInt32();
     Unused1 = new byte[12];
     Flags   = new LocalVariableFlag();
     Unused2 = new byte[7];
 }