@page "/counter" @using System.Runtime.InteropServices Counter

Counter

Current count: @currentCount

Click me @code { private int currentCount = 0; [DllImport("counter")] static extern int fact(int n); public void test() { currentCount = fact(10); } }