Gets the field with the given name.
(name, parameterCount = -1)
| 60 | } |
| 61 | /** Gets the field with the given name. */ |
| 62 | tryMethod(name, parameterCount = -1) { |
| 63 | return this.class.tryMethod(name, parameterCount).withHolder(this); |
| 64 | } |
| 65 | /** Releases the lock on an object and attempts to block the current thread until it reacquires the lock. */ |
| 66 | tryWait(timeout) { |
| 67 | return !!Il2Cpp.Api._monitorTryWait(this, timeout); |
nothing calls this directly
no test coverage detected