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