Is there a way to use native WASM module? #968
Answered
by
jeromelaban
xperiandri
asked this question in
Q&A
-
If I have a WASM module can I call it from .NET without JavaScript? |
Beta Was this translation helpful? Give feedback.
Answered by
jeromelaban
May 9, 2025
Replies: 1 comment
-
Thanks for the question. Calling a Wasm module is called dynamic linking, and it's not supported at this time by the .NET runtime. If you have a |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
xperiandri
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the question. Calling a Wasm module is called dynamic linking, and it's not supported at this time by the .NET runtime. If you have a
.o
file, then you can statically link to it.