In CSharp i can do this:
but i tried to do on B4A with this:
But i get an error.
Exists any form to do the same with B4A?
Is it possible to do?
Thanks in advance.
B4X:
struct Asignatura{
string Nombre;
int idAsig ;
String Color;
}
List<myStruct> a= new List<MyStruct>();
but i tried to do on B4A with this:
B4X:
Type Asignatura(Nombre As String, idAsig As Int, Color As String)
Dim a As List<Asignatura>
Exists any form to do the same with B4A?
Is it possible to do?
Thanks in advance.