Avoid different methods of importing xml that are slow. Bad: [xml]( get-content <File> ) Good ? (More research needed to see if there is a better way): $xml = [xml].new ; $xml.Load(<File>)
Avoid different methods of importing xml that are slow.
Bad: [xml]( get-content )
Good ? (More research needed to see if there is a better way): $xml = [xml].new ; $xml.Load()