1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
[System.Collections.ArrayList] $arraylist = New-Object System.Collections.ArrayList # Almacenar en un array tareas para realizar en el día y la hora de realizarlas $null = $arraylist.Add( [pscustomobject] @{ dia = 1 tarea = "Despertarse" hora = "07:00am" }) $null = $arraylist.Add( [pscustomobject] @{ dia = 2 tarea = "Comer" hora = "14:00pm" }) $null = $arraylist.Add( [pscustomobject] @{ dia = 3 tarea = "Dormir" hora = "11:00pm" }) $json = $arraylist | ConvertTo-Json ($json | ConvertFrom-Json).tarea |