Hello I would Like to receive some help. I have this structure:
struct data
{
public String names;
public int number;
}
I've been asked to show this structure in the console sorted alphabetically (by evaluating the names) I don't really know how to do this, I know how to sort arrays but i don't know how to sort a structure like this.
I am a beginner, any help is received thanks.