Need help on below conversion to VB.NET.

[DirectMethodProxyID(IDMode = DirectMethodProxyIDMode.Alias, Alias = "UC")]
public partial class AliasID : System.Web.UI.UserControl
{
    [DirectMethod]
    public void HelloUserControl()
    {
        X.Msg.Alert("Message", "Hello from UserControl").Show();
    }
}
link|improve this question

75% accept rate
feedback

1 Answer

up vote 4 down vote accepted
<DirectMethodProxyID(IDMode := DirectMethodProxyIDMode.[Alias], [Alias] := "UC")> _
Public Partial Class AliasID
    Inherits System.Web.UI.UserControl
    <DirectMethod> _
    Public Sub HelloUserControl()
        X.Msg.Alert("Message", "Hello from UserControl").Show()
    End Sub
End Class
link|improve this answer
Thanks for the solutions. – wajatimur Dec 28 '11 at 20:55
2  
Use this in future for simple code conversion developerfusion.com/tools/convert/csharp-to-vb – Tomislav Markovski Dec 28 '11 at 20:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.