1 write to Version
System.Private.CoreLib (1)
System\Reflection\RuntimeAssemblyName.cs (1)
26this.Version = version;
13 references to Version
System.Private.CoreLib (7)
System\Reflection\RuntimeAssemblyName.cs (7)
68if (this.Version == null) 70if (other.Version != null) 75if (!this.Version.Equals(other.Version)) 144if (this.Version != null) 145blank.Version = this.Version; 177return AssemblyNameFormatter.ComputeDisplayName(Name, Version, CultureName, pkt, AssemblyNameInfo.ExtractAssemblyNameFlags(Flags), AssemblyNameInfo.ExtractAssemblyContentType(Flags));
System.Private.TypeLoader (6)
Internal\Reflection\Execution\AssemblyBinderImplementation.cs (6)
110Debug.Assert(defName.Version != null); 116if (refName.Version != null) 118if (!AssemblyVersionMatches(refVersion: refName.Version, defVersion: defName.Version)) 120preferredException = new FileLoadException(SR.Format(SR.FileLoadException_RefDefMismatch, refName.FullName, defName.Version, refName.Version));