Pergunta

I'm new to BrightScript and am trying to figure out how to work with their associative arrays. My questions is, can an associative array in BrightScript hold another array as a value?

I'm trying to parse an associative array that looks like this:

showList = {Romance: 
        [
            {
                Title: "The Notebook",
                releaseDate: "2000"
            }
        ], 

    Comedy:
        [
            {
                Title: "Caddyshack",
                releaseDate: "1976"
            }
        ]
     }

If I use a statement like this:

return showlist["Comedy"]

Will this only return an array containing my Comedy video meta-data?

It seems like this should work, but I've been having trouble implementing this. Any suggestions?

Thanks!

Foi útil?

Solução

Yes, showList["Comedy"] or showList.comedy give you

[ { Title: "Caddyshack", releaseDate: "1976" } ]
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top