I am experimenting with Blazor for some time now and I am trying to find an explanation about the difference between
<input type="button" onclick="@methodCall()">Something</button>and
<input type="button" @onclick="() => methodCall()">Something</button>Why is @ expected before onclick vs @ being part of value?