摘要:
/// <summary> /// Excel帮助类 XQX /// </summary> public class ExcelHelper : IDisposable { private string fileName = null; private IWorkbook workbook = nu 阅读全文
摘要:
/// <summary> /// 基于netcore配置框架的文件监控帮助类 XQX /// </summary> public class FileWatchHelper<T> { private IConfiguration _configuration; /// <summary> /// 阅读全文
摘要:
声明用户名git config --global user.name "name"声明邮箱git config --global user.email "email"生成本地的sshssh-keygen -t rsa -C "邮箱" 阅读全文
摘要:
//添加开机自启动,采用注册表的方式实现 // 添加到 所有用户的 注册表启动项 RegistryKey RKey = Registry.LocalMachine.CreateSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run"); RKey 阅读全文
摘要:
先检查一下现在起始数DBCC checkident([table_name], NORESEED) 重置自增起始值DBCC checkident([table_name], RESEED, [当前最后一个数]) 阅读全文
摘要:
/// <summary> /// md5加密 /// </summary> /// <param name="str"></param> /// <returns></returns> public static string GenerateMD5(String str) { MD5 md5 = 阅读全文
摘要:
using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Net;using System.Text; namespace WindowsFormsApp9{ public 阅读全文
摘要:
public class FTPHelper { string ftpServerIPout; string ftpServerIPin; string ftpUserIDout; string ftpUserIDin; string ftpPasswordout; string ftpPasswo 阅读全文
摘要:
在 工具-NuGet包管理器-程序包管理控制台 输入 Install-Package Microsoft.EntityFrameworkCore.Tools //安装管理工具 PM> Scaffold-DbContext "Data Source=F:\XQX\个人项目\C#学习\SQLiteStu 阅读全文
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; /// <summary>/// DLL帮助类/// </summary>n 阅读全文