Hi everybody,
To me the following code shouldn't work but it does !
Imports system.String
Dim x As String="This,is ,a,test"
Dim y(1) As String
y=x.Split(",")
TextBox1.text=y (3)
why "Y" which is an array of lenght 2 accepts index 3 which is larger than
its lenght?
Any thoughts?
--
Best regards,
Edward
To me the following code shouldn't work but it does !
Imports system.String
Dim x As String="This,is ,a,test"
Dim y(1) As String
y=x.Split(",")
TextBox1.text=y (3)
why "Y" which is an array of lenght 2 accepts index 3 which is larger than
its lenght?
Any thoughts?
--
Best regards,
Edward
Comment