
c#开发
菜鸟阿都
自己学习软件时感觉思路有点混乱,所以写写博客整理一下思路。也可以和大家分享一下,
个人微信公众号:菜鸟阿都,欢迎一起交流学习
展开
-
c#发送请求访问外部接口
string url = "https://cloud.soei.com.cn/smsapi/sms/verifycode"; HttpClient httpClient = new HttpClient(); httpClient.BaseAddress = new Uri(url); //表头参数 string token = "9c0025b4aae442bda5498971ec1ab219"; ..原创 2020-05-12 14:27:49 · 1439 阅读 · 0 评论 -
c#调用python应用程序
c#语言调用python编写的应用程序 windows windows平台下,python打包后的应用程序为.exe程序 using (Process myProcess = new Process()) { myProcess.StartInfo.UseShellExecute = false; var guid = System.Guid.NewGuid().ToString();原创 2020-05-12 13:36:00 · 523 阅读 · 0 评论 -
ABP框架应用
ABP框架应用 参考资料:https://www.cnblogs.com/farb/p/ABPTheory.html 了解: 使用工具:vs2017 开发目标:webapi 使用Mysql数据库 API登陆:*.Core >> Authorization >> User.cs 文件中有登陆的账号和密码 账号:admin 密码:123qwe 1.模板生成 后端...原创 2020-04-16 19:12:28 · 949 阅读 · 0 评论