Public Class data
Public Structure ParamCar
Public Alfa As Double
Public Eta As Double
Public Mw7P As Double
Public Z7P As Double
Public Sg7P As Double
Public Cf As Double
Public Kw As Double
Public Ja As Double
Public Ya As Double
Public Nscn As Integer
Public Banderascn As Integer
Public Metdesdob As Integer
Public n As Integer
Public metSg As Integer
Public metTb As Integer
Public metCriticas As Integer
Public metTc As Integer
Public metPc As Integer
Public metomega As Integer
Public ieq As Integer
End Structure
Private _mystructure As data.ParamCar
Public Property mystructure() As data.ParamCar
Get
Return _mystructure
End Get
Set(ByVal value As data.ParamCar)
_mystructure = value
End Set
End Property
Private _name As String
Public Property name() As String
Get
Return name
End Get
Set(ByVal value As String)
dmyarray1 = value
End Set
End Property
End Class
Dim example As New data()
example.mystructure.Alfa = 34
ASKER
Private _myArray(,) As Double
Public Property myArray() As Double(,)
Get
Return _myArray
End Get
Set(ByVal value As Double(,))
_myArray = value
End Set
End Property
ASKER
ASKER
ASKER
Visual Basic .NET (VB.NET) is an object-oriented programming language implemented on the .NET framework, but also supported on other platforms such as Mono and Silverlight. Microsoft launched VB.NET as the successor to the Visual Basic language. Though it is similar in syntax to Visual Basic pre-2002, it is not the same technology,
TRUSTED BY
ASKER
something like this??
Open in new window