会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
新生代农民工
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
12
下一页
2024年7月26日
EFCore 8.0.3 DbFirst
摘要: 1.先安装EF相关包 : 2.appsettings.json添加节点 "ConnectionStrings": { "sqlserver": "server=192.168.0.136;Initial Catalog=TY_Version;User ID=sa;Password=123456;Tr
阅读全文
posted @ 2024-07-26 11:04 RookieBoy666
阅读(4)
评论(0)
推荐(0)
编辑
2024年7月4日
Git同一个地址代码,换了Windows账号导致Git 失效
摘要: 命令: git config --global --add safe.directory 'D:/ZJP/Code/五代'
阅读全文
posted @ 2024-07-04 14:51 RookieBoy666
阅读(11)
评论(0)
推荐(0)
编辑
2024年5月8日
SVN异常处理——禁止访问
摘要: ![image](https://img2024.cnblogs.com/blog/1288881/202405/1288881-20240508165007760-801726987.png)
阅读全文
posted @ 2024-05-08 16:50 RookieBoy666
阅读(8)
评论(0)
推荐(0)
编辑
2024年4月9日
BS
摘要: 取二进制图片数据 $('#photoUrl').attr('src', data.Photo ? 'data:image/jpeg;base64,' + data.Photo : '/Content/img/User.png'); 取input type='checkbox' 是否选中 $("#Is
阅读全文
posted @ 2024-04-09 15:09 RookieBoy666
阅读(24)
评论(0)
推荐(0)
编辑
2024年3月23日
HttpHelper
摘要: public static class HttpHelper { //private static LogHelper Log { get; } = new LogHelper("HttpHelper"); /// <summary> /// 发起POST同步请求 /// </summary> //
阅读全文
posted @ 2024-03-23 17:56 RookieBoy666
阅读(5)
评论(0)
推荐(0)
编辑
Json扩展方法
摘要: 命名空间: 点击查看代码 using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using System.IO; using System.Linq; 类: 点击查看代码 /// <summary> /// Json扩展方法
阅读全文
posted @ 2024-03-23 17:55 RookieBoy666
阅读(8)
评论(0)
推荐(0)
编辑
c# 调用ImageMagick实现HEIC格式的图片转成jpg
摘要: nuget安装 Magick.NET-Q8-AnyCPU 我项目Framework未 4.5.1 这安装的7.17.0版本的包: 程序集引用: using ImageMagick; ConvertHeicToJpg方法转换代码如下: 点击查看代码 /// <summary> /// Heic转ToJ
阅读全文
posted @ 2024-03-23 16:52 RookieBoy666
阅读(359)
评论(0)
推荐(0)
编辑
2024年2月27日
Winform获取屏幕分辨率
摘要: 代码 点击查看代码 int xWidth3 = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width; int yHeight3 = System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height
阅读全文
posted @ 2024-02-27 15:08 RookieBoy666
阅读(134)
评论(0)
推荐(0)
编辑
winform 中控件按分辨率 比例缩放
摘要: 窗口初始化后: 点击查看代码 //获取窗口的大小,Tag随便保存的,也可以定义变量保存 this.Tag = this.Width.ToString() + "," + this.Height.ToString(); //这一步很重要,不能隐式的去生成这个事件,就是不能直接在属性栏里面双击自动生成,
阅读全文
posted @ 2024-02-27 15:00 RookieBoy666
阅读(145)
评论(0)
推荐(0)
编辑
2023年11月23日
try catch 块 在catch块或者try块 return 掉 finally会执行吗?
摘要: 1.在catch块 return 掉 finally会执行吗? 答案:会 代码: 点击查看代码 try { int s = 1; Console.WriteLine(1); var a = 5 / (1 - s);//除以 0 捕获异常 } catch (Exception) { Console.W
阅读全文
posted @ 2023-11-23 15:58 RookieBoy666
阅读(8)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
···
12
下一页