serializer
Programmer
I have these properties below but I don't know the best way for ? = converting array to generic list:
<ComVisible(False)> Public Conditions As New List(Of String)
Public Property ConditionsArray() As String()
Get
Return Conditions.ToArray
End Get
Set(ByVal value As String())
Conditions = ?
End Set
End Property
<ComVisible(False)> Public Conditions As New List(Of String)
Public Property ConditionsArray() As String()
Get
Return Conditions.ToArray
End Get
Set(ByVal value As String())
Conditions = ?
End Set
End Property