Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Databinding to an object
Message
From
28/09/2006 09:12:45
Mike Cole
Yellow Lab Technologies
Stanley, Iowa, United States
 
 
To
28/09/2006 01:36:52
General information
Forum:
ASP.NET
Category:
Object Oriented Programming
Environment versions
Environment:
VB 8.0
Miscellaneous
Thread ID:
01157683
Message ID:
01157820
Views:
27
Public Class Wire

    'Fields
    Protected m_name As String
    Protected m_color As String
    Protected m_guage As Integer

    'Properties
    Public Property Name()
        Get
            Return m_name
        End Get
        Set(ByVal value)
            m_name = value
        End Set
    End Property

    Public Property Color()
        Get
            Return m_color
        End Get
        Set(ByVal value)
            m_color = value
        End Set
    End Property

    Public Property Guage()
        Get
            Return m_guage
        End Get
        Set(ByVal value)
            m_guage = value
        End Set
    End Property

End Class
Very fitting: http://xkcd.com/386/
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform