@code {
public static RenderFragment xxx = @<button @onclick="Clicked">Click</button>;
public void Clicked()
{
}
}
Blazor应用程序:错误CS0026:关键字'this'在静态属性,静态方法或静态字段初始化程序中无效
我删除了static关键字,不构建示例。
public RenderFragment xxx = @<button @onclick="Clicked">Click</button>;
public void Clicked()
{
}
它发生在错误下方 错误CS0027:关键字“ this”在当前上下文中不可用