Does the latest version of Powershell have the ability to do something like JavaScript's:
var point = new Object();
point.x = 12;
point.y = 50;
If not, what is the equivalent or workaround?
UPDATE
Read all comments
|
1
|
Does the latest version of Powershell have the ability to do something like JavaScript's:
If not, what is the equivalent or workaround? UPDATE
|
|||
|
|
|
|
The syntax is not directly supported by the functionality is there via the add-member cmdlet's. Awhile ago, I wrapped this functionality in a general purpose tuple function. This will give you the ability to one line create these objects.
Here is the code for New-Tuple
Blog Post on the subject: http://blogs.msdn.com/jaredpar/archive/2007/11/29/tuples-in-powershell.aspx#comments |
||||
|
|
|
You can do it like this:
Regarding one of your comments elsewhere, custom objects may be more useful than hash tables because they work better with cmdlets that expect objects to have named properties. For example:
|
||
|
|
|
|
How to Create an Object in PowerShell |
||||
|
|
|
Sorry, even though the selected answer is good, I couldn't resist the hacky one line answer:
|
||
|
|
|
For simple ways, first, is a hashtable (available in V1) $obj = @{} $obj.x = 1 $obj.y = 2 Second, is a PSObject (easier in V2) $obj = new-object psobject -property @{x = 1; y =2} It gives you roughly the same object, but psobjects are nicer if you want to sort/group/format/export them |
||
|