stripe payment dll:条带支付的DLL 源码
条带支付dll 条带支付的DLL 要求 .Net Framework 4.6.1 + 如何使用 using StripePayment; ... 初始化 StripeGateway stripe = new StripeGateway("Your publishable key"); 创建付款 // method 1 StripeCard card = new StripeCard("4242424242424", 2021, 5, "034"); Money payout = new Money(50.50m, "usd"); bool result = stripe.Pay(card, payout); Console.WriteLine("result = ", result); // method 2 resul
用户评论