09 2023 档案

摘要:string connString = "Server=MATEBOOK16S\\SQLEXPRESS;DataBase=MISDB;Uid=sa;Pwd=123456"; //连接数据库void ConnectDB(){ //1.创建Connecation对象 //SqlConnection co 阅读全文
posted @ 2023-09-30 14:08 KevinSteven 阅读(9) 评论(0) 推荐(0) 编辑
摘要:https://zhuanlan.zhihu.com/p/460610918 阅读全文
posted @ 2023-09-29 16:09 KevinSteven 阅读(17) 评论(0) 推荐(0) 编辑
摘要://简单事务实现代码 static void Test() { DataTable dt = new DataTable(); SqlConnection cnn = new SqlConnection("连接字符串"); SqlCommand cmd = new SqlCommand(); cmd 阅读全文
posted @ 2023-09-29 15:59 KevinSteven 阅读(29) 评论(0) 推荐(0) 编辑
摘要:1.WebRequest方法 Post: private void button1_Click(object sender,EventArgs e) { string ss = HttpPost("http://localhost:41558/api/Demo/PostXXX","{Code:\"t 阅读全文
posted @ 2023-09-26 21:02 KevinSteven 阅读(59) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/Upgrader/article/details/107774139 阅读全文
posted @ 2023-09-26 16:11 KevinSteven 阅读(7) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/DotnetNb/article/details/131075198 https://blog.csdn.net/m0_52559870/article/details/124980608 阅读全文
posted @ 2023-09-26 16:01 KevinSteven 阅读(104) 评论(0) 推荐(0) 编辑
摘要:lock:锁 个人理解主要是锁住代码块,只让一个线程执行锁住的代码块内容。其他线程必须等待当前的线程执行完代码块后,锁被释放了,才能进入执行。这样做的好处,可以在多线程中,保证线程安全。 以下是个人在网上搜集的一些关于lock的弊端: 1.性能开销:使用lock会造成额外的性能开销,因为每次进入和退 阅读全文
posted @ 2023-09-26 15:53 KevinSteven 阅读(240) 评论(0) 推荐(0) 编辑
摘要:基础枚举 public enum Anima{ //默认值dog =0, 依次往下排,可自定义fox = 1, fish =2,tiger=3 dog, fox, fish, tiger } 高级用法,反射元数据 加了Description,就可以通过反射访问这些数据 public enum Ani 阅读全文
posted @ 2023-09-25 15:07 KevinSteven 阅读(451) 评论(0) 推荐(0) 编辑