Attributes are not translated

Original C# code:

[WebMethod]
public int Add(int a, int b)
{
    return (a + b);
}

Translated to:

Public Function Add(a As Integer, b As Integer) As Integer
  Return a + b
End Function

Should have been:

<WebMethod>
Public Function Add(a As Integer, b As Integer) As Integer
  Return a + b
End Function

Logged as bugs://E25657.

bugs://E25657 was closed as fixed.