E
Ed Cohen
I need to get the index of a list of the following Cities class
Public Class Cities
Private m_cityName As String
Public Sub New()
End Sub
Public Property CityName() As String
Get
Return m_cityName
End Get
Set(ByVal value As String)
m_cityName = value
End Set
End Property
End Class
The examples I have found are too simple. They only use String. Any ideas?
Thank you in advance.
Ed Cohen | (e-mail address removed)
Public Class Cities
Private m_cityName As String
Public Sub New()
End Sub
Public Property CityName() As String
Get
Return m_cityName
End Get
Set(ByVal value As String)
m_cityName = value
End Set
End Property
End Class
The examples I have found are too simple. They only use String. Any ideas?
Thank you in advance.
Ed Cohen | (e-mail address removed)