bakabird

Results 5 comments of bakabird

Is it possible to use `string` in that way? ``` let int:int32 = 1; let str_int:string = int as string; ```

> Good prior art from @timfish [#1276 (comment)](https://github.com/electron/forge/issues/1276#issuecomment-863158445) > > https://www.npmjs.com/package/@timfish/forge-externals-plugin it work!

> Guess you have to look into the underlaying mono documentation and use the debugger to get into this issue :/ http://docs.go-mono.com/index.aspx?link=xhtml%3Adeploy%2Fmono-api-unsorted.html https://github.com/mono/mono/blob/main/mono/metadata/object.c#L773 Thanks, but how to debug the mono-api...

According to https://github.com/Misaka-Mikoto-Tech/MonoHook#%E5%8E%9F%E7%90%86, it say that `MethodInfo.MethodHandle.GetFunctionPointer().ToPointer()` can return the jit_address of method. Can it be a replacement for MonoApi.mono_compile_method?

> According to https://github.com/Misaka-Mikoto-Tech/MonoHook#%E5%8E%9F%E7%90%86, it say that `MethodInfo.MethodHandle.GetFunctionPointer().ToPointer()` can return the jit_address of method. Can it be a replacement for MonoApi.mono_compile_method? Well, it seems infeasible... the class and method to...