Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Databinding to an object
Message
De
28/09/2006 09:12:45
Mike Cole
Yellow Lab Technologies
Stanley, Iowa, États-Unis
 
 
À
28/09/2006 01:36:52
Information générale
Forum:
ASP.NET
Catégorie:
Programmation orienté objet
Versions des environnements
Environment:
VB 8.0
Divers
Thread ID:
01157683
Message ID:
01157820
Vues:
28
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/
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform