Pergunta

Por que eu recebo o erro "Esperado classe, interface, enum ou struct" com a corda sublinhado?

 public static string IsSelected(this HtmlHelper helper, string A, string B)

    {
         return "wtf";

    }
Foi útil?

Solução

Seu método de extensão precisa estar dentro de uma classe estática:

public static class MyExtensions
{
    public static string IsSelected( this HtmlHelper helper, string A, string B)
    {
        return "wtf";

    }
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top