(string InTypeName, string InName, ManagedType[] InTypes, int InParameterCount)
| 45 | public readonly int ParameterCount; |
| 46 | |
| 47 | public MethodKey(string InTypeName, string InName, ManagedType[] InTypes, int InParameterCount) |
| 48 | { |
| 49 | TypeName = InTypeName; |
| 50 | Name = InName; |
| 51 | Types = InTypes; |
| 52 | ParameterCount = InParameterCount; |
| 53 | } |
| 54 | |
| 55 | public override bool Equals([NotNullWhen(true)] object? obj) => obj is MethodKey other && Equals(other); |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected