Delete a NIC from Azure w/powershell

I’m trying to delete a vm w/powershell and its nic/publicIP/vhds. Deleting the vm and disk is working, but I can’t seem to find a way to delete the NIC. I thought Remove-AzureRmVMNetworkInterface should do it after deleting the vm, but that doesn’t seem to do anything (or maybe it only works to disconnect a nic from a vm if you have multiple nics and remove one). Anyone know what the cmdlet is to actually delete a nic? Thanks.

Doh! spent way too much time on this.
Remove-AzureRmNetworkInterface -ResourceGroupName $resourceGroupName -Name $net.Name -Force