mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
15 lines
218 B
Plaintext
15 lines
218 B
Plaintext
@page "/"
|
|
@using System.Runtime.InteropServices
|
|
|
|
<PageTitle>Native C</PageTitle>
|
|
|
|
<h1>Native C Test</h1>
|
|
|
|
<p>
|
|
@@fact(3) result: @fact(3)
|
|
</p>
|
|
|
|
@code {
|
|
[DllImport("Test")]
|
|
static extern int fact(int n);
|
|
} |