示例#1
0
 public AScriptBytes()
 {
     Type    = AScriptObjectType.None;
     Address = UIntPtr.Zero;
     Bytes   = new AByteArray();
 }
示例#2
0
 public AScriptBytes(AScriptObjectType type, UIntPtr address, AByteArray bytes)
 {
     Type    = type;
     Address = address;
     Bytes   = bytes;
 }
示例#3
0
 public void Add(AScriptObjectType type, UIntPtr address, AByteArray bytes)
 {
     Add(new AScriptBytes(type, address, bytes));
 }