public AssemblyReferenceNodeImpl(ITreeNodeGroup treeNodeGroup, ModuleDef asmRefOwnerModule, AssemblyRef assemblyRef) {
			TreeNodeGroup = treeNodeGroup;
			this.asmRefOwnerModule = new WeakReference(asmRefOwnerModule);
			// Make sure we don't hold on to the original reference since it could prevent GC of the
			// owner module.
			AssemblyRef = assemblyRef.ToAssemblyRef();
			AssemblyRef.Rid = assemblyRef.Rid;
		}
 public AssemblyReferenceNodeImpl(ITreeNodeGroup treeNodeGroup, ModuleDef asmRefOwnerModule, AssemblyRef assemblyRef)
 {
     TreeNodeGroup          = treeNodeGroup;
     this.asmRefOwnerModule = new WeakReference(asmRefOwnerModule);
     // Make sure we don't hold on to the original reference since it could prevent GC of the
     // owner module.
     AssemblyRef     = assemblyRef.ToAssemblyRef();
     AssemblyRef.Rid = assemblyRef.Rid;
 }