|
<div class="supplied">You supplied: @SuppliedValue</div>
|
|
<div class="computed">I computed: @computedValue</div>
|
|
|
|
@functions {
|
|
public int SuppliedValue { get; set; }
|
|
|
|
private int computedValue;
|
|
|
|
protected override void OnParametersSet()
|
|
{
|
|
computedValue = SuppliedValue * 2;
|
|
}
|
|
}
|