Gets the parameters of this method.
()
| 11811 | } |
| 11812 | /** Gets the parameters of this method. */ |
| 11813 | get parameters() { |
| 11814 | return Array.from(Array(this.parameterCount), (_, i) => { |
| 11815 | const parameterName = Il2Cpp.Api._methodGetParameterName(this, i).readUtf8String(); |
| 11816 | const parameterType = Il2Cpp.Api._methodGetParameterType(this, i); |
| 11817 | return new Il2Cpp.Parameter(parameterName, i, new Il2Cpp.Type(parameterType)); |
| 11818 | }); |
| 11819 | } |
| 11820 | /** Gets the relative virtual address (RVA) of this method. */ |
| 11821 | get relativeVirtualAddress() { |
| 11822 | return this.virtualAddress.sub(Il2Cpp.module.base); |
nothing calls this directly
no test coverage detected