コード例 #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));
 }