I have an Array of "xml-node" objects:
xml-node object:
node <---------- this object is the one that has 3 other attributes (see below)
path
pattern
Node:
filename
modification
type
Problem:
I want to sort this array of xml-nodes based on the "modification" attribute; how would I go about it?
I've tried:
$nodes | sort-object Node.modification