上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 1、安装nuget包 CommunityToolkit.Mvvm 2、新建ViewModel类 public class UserViewModel : ObservableObject { private UserModel _userModel; private string _username 阅读全文
posted @ 2023-11-10 15:53 CelonY 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 1、扩展包 Microsoft.Extensions.Hosting 2、包括Host、WebApplication 3、示例 1)honst 注意: <Project Sdk="Microsoft.NET.Sdk"> var builder = Host.CreateDefaultBuilder( 阅读全文
posted @ 2023-10-19 22:16 CelonY 阅读(31) 评论(0) 推荐(0) 编辑
摘要: .NET使用quartz+topshelf实现定时执行任务调度服务 阅读全文
posted @ 2023-09-13 21:36 CelonY 阅读(6) 评论(0) 推荐(0) 编辑
摘要: #region 【将商品金额小写转换成大写】MoneySmallToBig /// <summary> /// 将商品金额小写转换成大写 /// </summary> /// <param name="par">小写金额</param> /// <returns>处理后的大写金额</returns> 阅读全文
posted @ 2022-10-03 17:34 CelonY 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 使用命令:docker cp filename container:/path container为docker容器名称 阅读全文
posted @ 2022-09-25 20:32 CelonY 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 1、安装ssh服务 sudo apt-get install openssh-serversudo apt-get install ufwsudo ufw enablesudo ufw allow 22 2、当我们在虚拟机上成功安装了 ssh 服务后,此时Xshell 远程连接时,不会出现 conn 阅读全文
posted @ 2022-05-15 20:30 CelonY 阅读(155) 评论(0) 推荐(0) 编辑
摘要: public static class RequestService { public static string jwttoken = "Api验证权限需要的秘钥"; /// <summary> /// GET请求 /// </summary> /// <param name="url">请求地址 阅读全文
posted @ 2022-05-08 16:07 CelonY 阅读(690) 评论(0) 推荐(1) 编辑
摘要: public static class ObjectToMapServie { #region 对象转成字典 /// <summary> /// 对象转换为字典 /// </summary> /// <param name="obj">待转化的对象</param> /// <returns></re 阅读全文
posted @ 2022-05-08 16:05 CelonY 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 来源:https://www.jb51.net/article/148907.htm public class DESEncrypt { private static string DESKey = "Key"; #region 加密 /// <summary> /// 加密 /// </summa 阅读全文
posted @ 2022-05-07 11:05 CelonY 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-05 17:42 CelonY 阅读(521) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页