Exemple #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");
            }
        }
Exemple #2
0
 public String(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }
Exemple #3
0
 public Process(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }
Exemple #4
0
 public Collection(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }
Exemple #5
0
 public Pointer(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }
Exemple #6
0
 protected Object(GdbStub.GdbMemory memory, ulong address)
 {
     this.memory = memory;
     Address     = address;
 }
Exemple #7
0
 public Task(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }