Literal translation in VB 10
<Description("My Description")> Public Property MyIntProperty As Integer
If this is for other programmers, you can offer Intellisense support through XML comments. This is the standard way to do this in both VB and C #.
B. B.
''' <summary>
''' Description goes here
''' </summary>
''' <value></value>
''' <returns></returns>
''' <remarks></remarks>
Public Property MyIntProperty As Integer