I'm having trouble finding much details on this. I need to work with an api that processes credit cards and it uses curl. All documentation is in php and while I could use php my main site is entirely in MVC4 using razor view engine. I need to convert this wich is from php to something useable in .net
$ curl https://api.stripe.com/v1/customers -u *private key here*:
-d "description=Customer for test@example.com" -d "card[number]=4242424242424242"
-d "card[exp_month]=12" -d "card[exp_year]=2013"
Thanks in advance for your time