In Python the lists could contain other lists for example
lista = ["x",["a","b"],["c","d"],"z"];
print lista[1][1]>>>>>>>>>> output "b"
my question is ... in c # can other fixes be contained in an array and contain loose elements such as "x" and "z" in the python list?
I was testing arraylist and when I use
miarreglo.AddRange(otro_arreglo);
what it does is put the elements together without separating them ie I hope I wait for this {"x", {"a", "b"}} BUT I get this {"x", "a", "b"}