8 references to MatchesExactly
System.Reflection.MetadataLoadContext (8)
System\Reflection\DefaultBinder.cs (2)
438
if (t.
MatchesExactly
(c1))
441
if (t.
MatchesExactly
(c2))
System\Reflection\Runtime\SignatureTypeExtensions.cs (6)
21
return pattern.
MatchesExactly
(parameter.ParameterType);
39
return actual.IsSZArray() && pattern.GetElementType()!.
MatchesExactly
(actual.GetElementType()!);
43
return actual.IsVariableBoundArray() && pattern.GetArrayRank() == actual.GetArrayRank() && pattern.GetElementType()!.
MatchesExactly
(actual.GetElementType()!);
47
return actual.IsByRef && pattern.GetElementType()!.
MatchesExactly
(actual.GetElementType()!);
51
return actual.IsPointer && pattern.GetElementType()!.
MatchesExactly
(actual.GetElementType()!);
69
if (!patternGenericTypeArgument.
MatchesExactly
(actualGenericTypeArguments[i]))