Overview of Wasm Sample: Simple greeting and counter (C#)
mainThis sample demonstrates how to build a WebAssembly application on top of the mono runtime. It showcases the interoperability between the mono runtime and JavaScript, specifically:
- Invoking JavaScript unmanaged code (
index.html) from the C# managed side (WasmSampleApp.cs). - Invoking C# managed code from the JavaScript side.
The running application allows users to enter a name to modify a greeting message and use a button to increment a counter.