deprived-main-website/OpenBirchWebsite/Pages/Counter.razor

21 lines
427 B
Plaintext
Raw Normal View History

@page "/counter"
2024-07-14 00:18:54 +02:00
@using System.Runtime.InteropServices
<PageTitle>Counter</PageTitle>
<h1>Counter</h1>
<p role="status">Current count: @currentCount</p>
2024-07-14 00:18:54 +02:00
<MudButton Color="Color.Primary" Variant=" Variant.Filled" OnClick="test">Click me</MudButton>
@code {
private int currentCount = 0;
2024-07-14 00:18:54 +02:00
[DllImport("counter")]
static extern int fact(int n);
2024-07-14 00:18:54 +02:00
public void test() {
currentCount = fact(10);
}
}