问题 I have a text file, in the text file are two names, exactly like this. Tom Hardy Brad Pitt I use this, to take the names from the file and split them. $Names = gc C:\Temp\Name.txt ForEach-Object {-Split $Names} How do I then assign each first name to $FirstName and each last name to $LastName? The idea behind this is that further down the line, for each $FirstName I will be creating a specific individual item with each name. I understand that after I run the above, each section of the name is