h1.post-title { color:orange; font-family:verdana,Arial; font-weight:bold; padding-bottom:5px; text-shadow:#64665b 0px 1px 1px; font-size:32px; } -->

Pages

Create Constructor in VB.Net

This is code for Constructor in VB.Net
private idx As Integer
    Public Sub Class1(ByVal id As Integer)
        Me.idx = id
    End Sub