HEJ! >Någon som kan förklara varför inte detta går och hur man löser det! Tackar för svaret? >När måste man då använda sig av CreateInstance?XBil = meBil.GetValue(8) ' Går ej vid "Option Strict On"
===
Någon som kan förklara varför inte detta går och hur man löser det!
XBil = meBil.GetValue(8) ' Går ej vid "Option Strict On"
/Alexander
Option Explicit On
Option Strict On
Public Class Form1
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
Friend WithEvents Button1 As System.Windows.Forms.Button
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.Button1 = New System.Windows.Forms.Button()
Me.SuspendLayout()
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(80, 80)
Me.Button1.Name = "Button1"
Me.Button1.TabIndex = 0
Me.Button1.Text = "Button1"
'
'Form1
'
Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
Me.ClientSize = New System.Drawing.Size(292, 266)
Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Button1})
Me.Name = "Form1"
Me.Text = "Form1"
Me.ResumeLayout(False)
End Sub
#End Region
Private Structure BIL
Public Namn As String
Public År As Integer
End Structure
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim meBil As Array = meBil.CreateInstance(GetType(BIL), 10)
Dim XBil As New BIL()
Dim D As Integer
XBil.Namn = "SAAB"
XBil.År = 2003
meBil.SetValue(XBil, 5)
XBil.Namn = "FORD"
XBil.År = 2001
meBil.SetValue(XBil, 8)
XBil = meBil.GetValue(5) ' Går ej vid "Option Strict On"
Console.WriteLine(XBil.Namn)
Console.WriteLine(XBil.År)
XBil = meBil.GetValue(8) ' Går ej vid "Option Strict On"
Console.WriteLine(XBil.Namn)
Console.WriteLine(XBil.År)
D = D
End Sub
End ClassSv: XBil = meBil.GetValue(8) ' Går ej vid "Option Strict On"
>XBil = meBil.GetValue(8) ' Går ej vid "Option Strict On"
För att GetValue returnerar ett värde av typen Object, som (som kompilatorn ser det) kan innehålla vad som helst, inte nödvändigtvis en BIL. Du måste använda CType för att casta till rätt typ
XBil =CType( meBil.GetValue(8), BIL)
Men varför håller du på med Array.CreateInstance och Get/SetValue? Det är betydligt enklare att skriva
Dim meBil(9) As BIL
Dim XBil As BIL
Dim D As Integer
XBil.Namn = "SAAB"
XBil.År = 2003
meBil(5) = XBil
XBil = meBil(5)
Console.WriteLine(XBil.Namn)
Console.WriteLine(XBil.År)
MSSv: XBil = meBil.GetValue(8) ' Går ej vid "Option Strict On"
Det var ju mycket lättare med ()!!!
När måste man då använda sig av CreateInstance?Sv: XBil = meBil.GetValue(8) ' Går ej vid "Option Strict On"
När du vill ha en array som inte har 0 som nedre gräns, eller om du vill skapa en array av en typ som du inte vet vid kompilering.
MS