Exemplo n.º 1
0
        public Value(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
        {
            Type type = typeof(T);

            if (type.IsClass && type != typeof(string))
            {
                throw new Exception("Cannot get value of this type");
            }
        }
Exemplo n.º 2
0
 public String(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }
Exemplo n.º 3
0
 public Process(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }
Exemplo n.º 4
0
 public Collection(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }
Exemplo n.º 5
0
 public Pointer(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }
Exemplo n.º 6
0
 protected Object(GdbStub.GdbMemory memory, ulong address)
 {
     this.memory = memory;
     Address     = address;
 }
Exemplo n.º 7
0
 public Task(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }