Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $CustomObjs=@()
- $CustomObj = New-Object -TypeName PSObject -Property @{ 'Name' = "Tobby"; 'Date' = "12/02/2023" }
- $CustomObjs += $CustomObj
- $CustomObj = New-Object -TypeName PSObject -Property @{ 'Name' = "Kazumi"; 'Date' = "21/07/2023" }
- $CustomObjs += $CustomObj
- $CustomObjs
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement