摘要: 1 public class HttpServiceHelper 2 { 3 public static string Post(string xml, string url, int timeout) 4 { 5 System.GC.Collect();//垃圾回收,回收没有正常关闭的http连接 阅读全文
posted @ 2022-07-07 13:50 进击的黑大帅 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1 /// <summary> 2 /// api接口帮助类 字典和json、xml 之间的相互转换 3 /// </summary> 4 public class ZhongBangApiHelper 5 { 6 public ZhongBangApiHelper() 7 { 8 9 } 10 1 阅读全文
posted @ 2022-07-07 13:47 进击的黑大帅 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 1、Base64转换为字符串 1 /// <summary> 2 /// base64转为字符串 3 /// </summary> 4 /// <param name="str"></param> 5 /// <returns></returns> 6 public string Base64ToS 阅读全文
posted @ 2022-07-07 13:34 进击的黑大帅 阅读(4276) 评论(0) 推荐(0) 编辑
摘要: 1、Json字符串转换为实体类 1 public class RegUnLock 2 { 3 /// <summary> 4 /// 医院编号 5 /// </summary> 6 public string hospitalCode { get; set; } 7 /// <summary> 8 阅读全文
posted @ 2022-07-07 13:27 进击的黑大帅 阅读(2731) 评论(0) 推荐(0) 编辑
摘要: 1、元组的定义与使用, 1 //定义 2 Tuple<string, string> a = new Tuple<string, string>("1", "2"); 3 //使用 4 string str1=a.Item1;//str1=="1" 5 string str2=a.Item2;//s 阅读全文
posted @ 2022-06-23 10:32 进击的黑大帅 阅读(1006) 评论(0) 推荐(0) 编辑
摘要: 1 /// <summary> 2 /// 增加序号 3 /// </summary> 4 /// <param name="sender"></param> 5 /// <param name="e"></param> 6 private void uiDataGridView1_RowPostP 阅读全文
posted @ 2022-06-23 10:11 进击的黑大帅 阅读(706) 评论(0) 推荐(0) 编辑
摘要: 1、定义Timer 1 public Timer timerForm; 1 private void MainWindow_Load(object sender, EventArgs e) 2 { 3 //pushTime为配置文件中配置的时间,单位分钟 4 timerForm = new Time 阅读全文
posted @ 2022-06-23 10:09 进击的黑大帅 阅读(1009) 评论(0) 推荐(0) 编辑
摘要: 1、首先在解决方案里右键点击项目选择【管理NuGet程序包】,在里面搜索并安装Dapper。 2、在项目中引用Dapper 3、创建一个DbHelper帮助类,顺便拓展一下toDataTable 的方法 1 using Dapper; 2 namespace NetFramework.Model 3 阅读全文
posted @ 2022-06-23 09:59 进击的黑大帅 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 1 1. 可空类型修饰符(?) 2 引用类型可以使用空引用表示一个不存在的值,而值类型通常不能表示为空。 3 例如:string str=null; 是正确的,int i=null; 编译器就会报错。 4 为了使值类型也可为空,就可以使用可空类型,即用可空类型修饰符"?"来表示,表现形式为"T?" 阅读全文
posted @ 2022-06-10 17:18 进击的黑大帅 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 1 /// <summary> 2 /// list导出为Excel 3 /// </summary> 4 /// <param name="list"></param> 5 /// <param name="filePath"></param> 6 public static void ListD 阅读全文
posted @ 2022-06-07 17:22 进击的黑大帅 阅读(104) 评论(0) 推荐(0) 编辑