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