Base:
method
Equals
System.Object.Equals(System.Object)
2 overrides of Equals
System.Reflection.Context (1)
System\Reflection\Context\Projection\ProjectingAssembly.cs (1)
104public override bool Equals([NotNullWhen(true)] object? o)
System.Xaml.Tests (1)
Common\CustomAssembly.cs (1)
50public override bool Equals(object? o) => DelegatingAssembly.Equals(o);
9 references to Equals
Microsoft.Extensions.DependencyModel (1)
DependencyContextLoader.cs (1)
46return assembly.Equals(Assembly.GetEntryAssembly());
PresentationFramework (1)
MS\Internal\AppModel\ResourceContainer.cs (1)
276if (assembly.Equals(Application.ResourceAssembly))
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (1)
199return left is not null && left.Equals(right);
src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (3)
1058Debug.Assert(typeof(T).Assembly.Equals(typeof(object).Assembly), "Implementation trusts the results of TryFormat because T is expected to be something known"); 1071Debug.Assert(typeof(T).Assembly.Equals(typeof(object).Assembly), "Implementation trusts the results of TryFormat because T is expected to be something known"); 1414Debug.Assert(typeof(T).Assembly.Equals(typeof(object).Assembly), "Implementation trusts the results of TryFormat because T is expected to be something known");
System.Xaml (1)
System\Xaml\XamlSchemaContext.cs (1)
778if (fromAssembly.Equals(toAssembly))
System.Xaml.Tests (1)
Common\CustomAssembly.cs (1)
50public override bool Equals(object? o) => DelegatingAssembly.Equals(o);
xunit.console (1)
common\AssemblyResolution\Microsoft.Extensions.DependencyModel\DependencyContextLoader.cs (1)
45return assembly.Equals(Assembly.GetEntryAssembly());