会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
问渠哪得清如许-修
博客园
首页
新随笔
联系
订阅
管理
2022年7月20日
Excel帮助类
摘要: /// <summary> /// Excel帮助类 XQX /// </summary> public class ExcelHelper : IDisposable { private string fileName = null; private IWorkbook workbook = nu
阅读全文
posted @ 2022-07-20 10:07 问渠哪得清如许-修
阅读(58)
评论(0)
推荐(0)
2022年7月1日
基于netcore配置框架的文件监控帮助类 XQX
摘要: /// <summary> /// 基于netcore配置框架的文件监控帮助类 XQX /// </summary> public class FileWatchHelper<T> { private IConfiguration _configuration; /// <summary> ///
阅读全文
posted @ 2022-07-01 16:26 问渠哪得清如许-修
阅读(111)
评论(0)
推荐(0)
2022年6月16日
本地生成ssh秘钥命令
摘要: 声明用户名git config --global user.name "name"声明邮箱git config --global user.email "email"生成本地的sshssh-keygen -t rsa -C "邮箱"
阅读全文
posted @ 2022-06-16 15:32 问渠哪得清如许-修
阅读(99)
评论(0)
推荐(0)
设置和取消开机启动
摘要: //添加开机自启动,采用注册表的方式实现 // 添加到 所有用户的 注册表启动项 RegistryKey RKey = Registry.LocalMachine.CreateSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run"); RKey
阅读全文
posted @ 2022-06-16 15:29 问渠哪得清如许-修
阅读(126)
评论(0)
推荐(0)
sqlserver自增长id操作
摘要: 先检查一下现在起始数DBCC checkident([table_name], NORESEED) 重置自增起始值DBCC checkident([table_name], RESEED, [当前最后一个数])
阅读全文
posted @ 2022-06-16 15:20 问渠哪得清如许-修
阅读(366)
评论(0)
推荐(1)
md5加密方法
摘要: /// <summary> /// md5加密 /// </summary> /// <param name="str"></param> /// <returns></returns> public static string GenerateMD5(String str) { MD5 md5 =
阅读全文
posted @ 2022-06-16 15:18 问渠哪得清如许-修
阅读(37)
评论(0)
推荐(0)
Http帮助类
摘要: using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Net;using System.Text; namespace WindowsFormsApp9{ public
阅读全文
posted @ 2022-06-16 15:17 问渠哪得清如许-修
阅读(66)
评论(0)
推荐(0)
FTP帮助类
摘要: public class FTPHelper { string ftpServerIPout; string ftpServerIPin; string ftpUserIDout; string ftpUserIDin; string ftpPasswordout; string ftpPasswo
阅读全文
posted @ 2022-06-16 15:16 问渠哪得清如许-修
阅读(43)
评论(0)
推荐(0)
EFCore-DBFirst方式生成SQLite实体对象.txt
摘要: 在 工具-NuGet包管理器-程序包管理控制台 输入 Install-Package Microsoft.EntityFrameworkCore.Tools //安装管理工具 PM> Scaffold-DbContext "Data Source=F:\XQX\个人项目\C#学习\SQLiteStu
阅读全文
posted @ 2022-06-16 15:14 问渠哪得清如许-修
阅读(213)
评论(0)
推荐(0)
DLL帮助类
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; /// <summary>/// DLL帮助类/// </summary>n
阅读全文
posted @ 2022-06-16 15:12 问渠哪得清如许-修
阅读(36)
评论(0)
推荐(0)
下一页
公告