RosettaCodeData/Task/Classes/Visual-Basic-.NET/classes-1.visual
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

29 lines
488 B
Text

Class Foo
Private m_Bar As Integer
Public Sub New()
End Sub
Public Sub New(ByVal bar As Integer)
m_Bar = bar
End Sub
Public Property Bar() As Integer
Get
Return m_Bar
End Get
Set(ByVal value As Integer)
m_Bar = value
End Set
End Property
Public Sub DoubleBar()
m_Bar *= 2
End Sub
Public Function MultiplyBar(ByVal x As Integer) As Integer
Return x * Bar
End Function
End Class