Gets the amount of generic parameters of this generic method.
()
| 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); |