One of the things that comes up quite often in my PowerShell classes is using your own .Net types so I though I'd put up a couple of entries based on a demo that I do.
I've put a zip file with all of the code mentioned in these posts into my download area.
I created a small .Net assembly containing two types, Bank and Account.
and compiled them into a file called Accounts.dll.
Now I can use Reflection.Assembly to load the dll
and create and use objects from the assembly
In the next post I'll add a custom format file so that negative bank account balances are displayed a (1000) rather than -1000.