예제 #1
0
파일: Value.cs 프로젝트: jbatonnet/System
        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
파일: String.cs 프로젝트: jbatonnet/System
 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
파일: Object.cs 프로젝트: jbatonnet/System
 protected Object(GdbStub.GdbMemory memory, ulong address)
 {
     this.memory = memory;
     Address     = address;
 }
예제 #7
0
 public Task(GdbStub.GdbMemory memory, ulong address) : base(memory, address)
 {
 }