Base:
method
Equals
System.Object.Equals(System.Object)
2 overrides of Equals
System.Private.CoreLib (1)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
478public override bool Equals(object? obj) => base.Equals(obj);
System.Reflection.Context (1)
System\Reflection\Context\Projection\ProjectingModule.cs (1)
111public override bool Equals([NotNullWhen(true)] object? o)
19 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.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 (12)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\DynamicMethod.cs (1)
262Debug.Assert(m == null || !m.Equals(s_anonymouslyHostedDynamicMethodsModule), "The user cannot explicitly use this assembly");
src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (1)
164return left is not null && left.Equals(right);
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (6)
232if (conBuilder.Module.Equals(this)) 355else if (!method.Module.Equals(this)) 478public override bool Equals(object? obj) => base.Equals(obj); 920if (refedModule.Equals(this)) 967if (method.Module.Equals(this)) 1187else if (fdBuilder.Module.Equals(this))
src\System\Reflection\Emit\SignatureHelper.cs (3)
401if (clsBuilder.Module.Equals(m_module)) 424if (rtBuilder.Module.Equals(m_module)) 930other.m_module!.Equals(m_module) &&
src\System\Reflection\MemberInfo.Internal.cs (1)
21if (!Module.Equals(other.Module))
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)))