Hello Everybody,
I'm trying to make working this code:
It works fine when running on Desktop, but when I try to compile it return this error:
Compiler Error Message: CS0029: Cannot implicitly convert type string[] to string
Line Return Veicoli()
Any hint?
Thanks
Francesco
I'm trying to make working this code:
B4X:
Sub Globals
Public Type(Codice,Nome,Targa) Veicoli
End Sub
Sub App_Start
Ricerca.Form2.Show
End Sub
Public Sub Veicolo(Codice)
Veicoli.Codice=Codice
Veicoli.Nome="Franco"
Veicoli.Targa="ES265CK"
Return Veicoli()
End Sub
It works fine when running on Desktop, but when I try to compile it return this error:
Compiler Error Message: CS0029: Cannot implicitly convert type string[] to string
Line Return Veicoli()
Any hint?
Thanks
Francesco