コード例 #1
0
            public void Initialize(ConnectionsControl owner, PackedMemorySnapshot snapshot, int gcHandleArrayIndex)
            {
                m_Owner    = owner;
                m_Snapshot = snapshot;
                m_GCHandle = new RichGCHandle(m_Snapshot, gcHandleArrayIndex);

                displayName = "GCHandle";
                m_Value     = m_GCHandle.managedObject.isValid ? m_GCHandle.managedObject.type.name : "";
                address     = m_GCHandle.managedObjectAddress;
            }
コード例 #2
0
 public void Initialize(GCHandlesControl owner, PackedMemorySnapshot snapshot, int gcHandlesArrayIndex)
 {
     m_Owner    = owner;
     m_GCHandle = new RichGCHandle(snapshot, gcHandlesArrayIndex);
 }
コード例 #3
0
 public GotoCommand(RichGCHandle value)
     : this()
 {
     toGCHandle = value;
 }
コード例 #4
0
 public ObjectProxy(PackedMemorySnapshot snp, PackedGCHandle packed)
 {
     snapshot = snp;
     gcHandle = new RichGCHandle(snp, packed.gcHandlesArrayIndex);
 }