Base:
method
Equals
System.Object.Equals(System.Object)
2 overrides of Equals
System.Private.CoreLib (1)
System\Reflection\Runtime\Modules\RuntimeModule.cs (1)
47public sealed override bool Equals(object obj)
System.Reflection.Context (1)
System\Reflection\Context\Projection\ProjectingModule.cs (1)
111public override bool Equals([NotNullWhen(true)] object? o)
9 references to Equals
dotnet-svcutil-lib (1)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (1)
2270return (type.GetTypeInfo().Module.Equals(typeof(DataContract).GetTypeInfo().Module) || IsAssemblyFriendOfSerialization(type.GetTypeInfo().Assembly)) && !type.GetTypeInfo().IsNestedPrivate;
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\RuntimeBinderExtensions.cs (1)
316return mi1.Module.Equals(mi2.Module) && s_MemberEquivalence(mi1, mi2);
Microsoft.Extensions.AI.Abstractions (1)
parent\parent\parent\eng\MSBuild\parent\parent\src\LegacySupport\NullabilityInfoContext\NullabilityInfoHelpers.cs (1)
36target.Module.Equals(other.Module);
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\Utils.vb (1)
385Return mi1.Module.Equals(mi2.Module) AndAlso s_MemberEquivalence(mi1, mi2)
System.ComponentModel.TypeConverter (1)
System\ComponentModel\TypeDescriptor.cs (1)
2477if (nodeType != null && nodeType.Module.Equals(module) || nodeType == typeof(object))
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (1)
164return left is not null && left.Equals(right);
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\DataContract.cs (1)
2222return (type.Module.Equals(typeof(DataContract).Module) || IsAssemblyFriendOfSerialization(type.Assembly)) && !type.IsNestedPrivate;
System.Reflection.Context (1)
System\Reflection\Context\Projection\ProjectingModule.cs (1)
115UnderlyingModule.Equals(other.UnderlyingModule);
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\General\Helpers.cs (1)
274if (!(thisMember.Module.Equals(other.Module)))