SoloCodigo
CLR: .Net / Mono / Boo / Otros CLR => VB .NET => Mensaje iniciado por: Taursoft en Martes 27 de Enero de 2004, 19:43
Título:
Como Quedaria Esto En Net
Publicado por:
Taursoft
en
Martes 27 de Enero de 2004, 19:43
POR FAVOR ALGUIEN SABRIA DECIRME COMO QUEDARIA ESTO EN VISUAL BASIC .NET
ESTO ES EN VISUAL BASIC 6.0
Public Property Get GetMediaID() As String
GetMediaID = m_MediaId
End Property
Y NO SE COMO VA N VISUAL BASIC .NET
ALGUIEN ME LO DICE POR FAVOR
GRACIAS
Título:
Re: Como Quedaria Esto En Net
Publicado por:
ROBER.29
en
Miércoles 28 de Enero de 2004, 09:27
Hola,
Eso quedaría de la siguiente forma:
Código: Text
Private m_MediaId As String
Public Property GetMediaID() As String
Get
return m_MediaId
End Get
Set(ByVal Value As String)
m_MediaId = Value
End Set
End Property
Saludos.
Título:
Re: Como Quedaria Esto En Net
Publicado por:
Taursoft
en
Miércoles 28 de Enero de 2004, 15:32
y este con un condicional
Código: Text
Public Property Get GetAlbumGenre() As String
GetAlbumGenre = m_Category
If (m_Genre <> "") Then GetAlbumGenre = m_Genre
End Property
iria asi
Código: Text
Public Property GetAlbumGenre() As String
Get
Return m_Category
End Get
Set
GetAlbumGenre = Value
If (m_Genre <> "") Then GetAlbumGenre = m_Genre
End Set
End Property
gracias saludos
Título:
Re: Como Quedaria Esto En Net
Publicado por:
Taursoft
en
Miércoles 28 de Enero de 2004, 15:42
y este
Código: Text
Public Property Let UseFirstMatch(FirstMatch As Boolean)
m_UseFirstMatch = FirstMatch
End Property
IRIA ASI?
Código: Text
Public Property UseFirstMatch(ByVal FirstMatch As Boolean)
Get
Return m_UseFirstMatch
End Get
Set(ByVal FirstMatch As Boolean)
m_UseFirstMatch = FirstMatch
End Set
End Property
GRACIAS POR ACLARARME ESTAS DUDILLAS
SALUDOS