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; }
public void Initialize(GCHandlesControl owner, PackedMemorySnapshot snapshot, int gcHandlesArrayIndex) { m_Owner = owner; m_GCHandle = new RichGCHandle(snapshot, gcHandlesArrayIndex); }
public GotoCommand(RichGCHandle value) : this() { toGCHandle = value; }
public ObjectProxy(PackedMemorySnapshot snp, PackedGCHandle packed) { snapshot = snp; gcHandle = new RichGCHandle(snp, packed.gcHandlesArrayIndex); }