Gets the parameters of this method.
()
| 107 | |
| 108 | /** Gets the parameters of this method. */ |
| 109 | get parameters() { |
| 110 | return Array.from(Array(this.parameterCount), (_, i) => { |
| 111 | const parameterName = Il2Cpp.Api._methodGetParameterName(this, i).readUtf8String(); |
| 112 | const parameterType = Il2Cpp.Api._methodGetParameterType(this, i); |
| 113 | return new Il2Cpp.Parameter(parameterName, i, new Il2Cpp.Type(parameterType)); |
| 114 | }); |
| 115 | } |
| 116 | |
| 117 | /** Gets the relative virtual address (RVA) of this method. */ |
| 118 | get relativeVirtualAddress() { |
nothing calls this directly
no test coverage detected