Test name <#= i #> | 12 |Test value <#= i * i #> |
Sorry, there's nothing at this address.
8 |Sorry, there's nothing at this address.
8 |Current count: @currentCount
6 | 7 | 8 | 9 | @code { 10 | private int currentCount = 0; 11 | 12 | private void IncrementCount() 13 | { 14 | currentCount += 2; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DotNetConf2020Demo/BlazorAppDemo/Pages/Index.razor: -------------------------------------------------------------------------------- 1 | @page "/" 2 | 3 |