Base:
method
Equals
System.Reflection.MemberInfo.Equals(System.Object)
2 overrides of Equals
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\ConstructorInfo.cs (1)
21
public override bool
Equals
(object? obj) => base.Equals(obj);
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodInfo.cs (1)
38
public override bool
Equals
(object? obj) => base.Equals(obj);
7 references to Equals
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (3)
278
return methodCall.MethodBase.
Equals
(_syncMethod);
290
return methodCall.MethodBase.
Equals
(_beginMethod);
302
return methodCall.MethodBase.
Equals
(_taskMethod);
Microsoft.VisualBasic.Core (1)
Microsoft\VisualBasic\CompilerServices\Utils.vb (1)
159
If mi1.
Equals
(mi2) Then
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\ConstructorInfo.cs (1)
21
public override bool Equals(object? obj) => base.
Equals
(obj);
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodBase.cs (1)
84
return left is not null && left.
Equals
(right);
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodInfo.cs (1)
38
public override bool Equals(object? obj) => base.
Equals
(obj);