1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
[System.Collections.ArrayList] $arraylist = New-Object System.Collections.ArrayList # Almacenar en un array información sobre libros $null = $arraylist.Add( [pscustomobject] @{ titulo = "Redes Locales" isbn = "9788415426479" imagen = "https://images-na.ssl-images-amazon.com/images/I/51ggAPSyROL._SX383_BO1,204,203,200_.jpg" curso = "gi1" obligatorio = 1 }) $null = $arraylist.Add( [pscustomobject] @{ titulo = "Sistemas Operativos Monopuesto" isbn = "978-84-9771-9711" imagen = "https://images-na.ssl-images-amazon.com/images/I/51xaG8rZaSL._SX411_BO1,204,203,200_.jpg" curso = "gi1" obligatorio = 1 }) $json = $arraylist | ConvertTo-Json ($json | ConvertFrom-Json).titulo |