PowerShell's Adaptive Type System doesn't let you create concrete types you can test against the way you did in your parameter. If you don't need that test, you're fine with any of the methods mentioned above.
If you want an actual type that you can cast to or type-check with, as in your example script ... it can't be done without compiling. In PowerShell 2, you can use the "Add-Type" command to do it simply:
add-type @"
public struct contact {
public string First;
public string Last;
public string Phone;
}
"@
In PowerShell 1, you could use CodeDom, there is a new-struct script on PoshCode.org which will help. Your example becomes:
New-Struct Contact @{
First=[string];
Last=[string];
Phone=[string];
}
Using the New-Struct script will let you actually test the class in your param([Contact]$contact) and make new ones using $contact = new-object Contact and so on...
Incidentally, if you do decide you don't need a "real" class that you can cast to and test against, in PowerShell 2.0 you can use the -Property parameter for New-Object:
$Contact = New-Object PSObject -Property @{ First=""; Last=""; Phone="" }
That way you get the basic object that you want with less code than before. But you are only getting a single object, so you have to run code like that for each Contact, and you can't easily test to see if an object "is" one of those type.