MCPcopy Create free account
hub / github.com/StudioCherno/Coral / MethodKey

Method MethodKey

Coral.Managed/Source/ManagedObject.cs:47–53  ·  view source on GitHub ↗
(string InTypeName, string InName, ManagedType[] InTypes, int InParameterCount)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected