Base:
method
Equals
System.Reflection.MethodBase.Equals(System.Object)
7 overrides of Equals
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeMethodBuilder.cs (1)
361public override bool Equals(object? obj)
src\System\Reflection\RuntimeMethodInfo.CoreCLR.cs (1)
164public override bool Equals(object? obj) =>
System.Reflection.Context (3)
System\Reflection\Context\Projection\ProjectingMethodInfo.cs (1)
123public override bool Equals([NotNullWhen(true)] object? o)
System\Reflection\Context\Virtual\InheritedMethodInfo.cs (1)
36public override bool Equals([NotNullWhen(true)] object? o)
System\Reflection\Context\Virtual\VirtualMethodBase.cs (1)
117public override bool Equals(object? obj)
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Methods\RoMethod.cs (1)
24public abstract override bool Equals(object? obj);
System.Xaml.Tests (1)
Common\CustomMethodInfo.cs (1)
75public override bool Equals(object? obj) => DelegatingMethod.Equals(obj);
13 references to Equals
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (1)
522if (method1.Equals(method2))
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (1)
Debugger\MemberInfo\MethodInfoImpl.cs (1)
152return other != null && this.Method.Equals(other.Method);
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\Utils.vb (1)
180If Not method1.Equals(method2) AndAlso
System.Linq.Expressions (1)
System\Linq\Expressions\MemberExpression.cs (1)
336if (method.Equals(propertyMethod))
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodInfo.cs (1)
57return left is not null && left.Equals(right);
System.Reflection.Context (2)
System\Reflection\Context\Projection\ProjectingMethodInfo.cs (1)
127UnderlyingMethod.Equals(other.UnderlyingMethod);
System\Reflection\Context\Virtual\InheritedMethodInfo.cs (1)
39UnderlyingMethod.Equals(other.UnderlyingMethod) &&
System.Reflection.DispatchProxy (3)
System\Reflection\DispatchProxyGenerator.cs (3)
356if (mi.Equals(associatedProperty.InterfaceGetMethod)) 364if (mi.Equals(associatedEvent.InterfaceAddMethod)) 366else if (mi.Equals(associatedEvent.InterfaceRemoveMethod))
System.Reflection.Emit (2)
System\Reflection\Emit\TypeBuilderImpl.cs (2)
327if (im.Exists(pair => pair.ifaceMethod.Equals(methodInfoDeclaration))) 1296if (im.InterfaceMethods[i].Equals(mapping[j].ifaceMethod))
System.Xaml.Tests (1)
Common\CustomMethodInfo.cs (1)
75public override bool Equals(object? obj) => DelegatingMethod.Equals(obj);