I have string list
string [] lines = {"1","2","3"};
Then I have another string list
string [] linesTwo = {"2.1","2.2","2.3"};
How can I make a combination of those lists when checkBox1 is checked? If checkBox1 is checked I would like to have list like:
{"1","2","2.1","2.2","2.3","3"}
EDIT: My lists do not actually contain any numbers so any sorting is not possible.