MCPcopy Create free account
hub / github.com/axhlzy/Il2CppHookScripts / genericParameterCount

Method genericParameterCount

Il2cppHook/_Ufunc.js:11766–11771  ·  view source on GitHub ↗

Gets the amount of generic parameters of this generic method.

()

Source from the content-addressed store, hash-verified

11764 }
11765 /** Gets the amount of generic parameters of this generic method. */
11766 get genericParameterCount() {
11767 if (!this.isGeneric) {
11768 return 0;
11769 }
11770 return this.object.method("GetGenericArguments").invoke().length;
11771 }
11772 /** Determines whether this method is external. */
11773 get isExternal() {
11774 return !!Il2Cpp.Api._methodIsExternal(this);

Callers

nothing calls this directly

Calls 2

invokeMethod · 0.45
methodMethod · 0.45

Tested by

no test coverage detected