I want to create a struct and after create a array of that struct like in C#.
Exactly like this sample in C#:
public struct factor
{
public doubledoor_lenth;
public string current_model;
public string current_number;
}
factor[] myarr= new factor[100];
I tried it in android studio and I can create the struct correct but I cant create array of it, please help me.