摘要: 注意:字节数据转换的时候用到了BitConverter扩展类,请参考我之前的文章【传送门】 使用的第三方库:NModbus4.NetCore using Modbus.Data; using Modbus.Device; using Modbus.Message; using System; usi 阅读全文
posted @ 2023-08-16 14:50 Mr_Xul 阅读(128) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Linq; using System.Net; using System.Text; namespace Common { /// <summary> /// 对BitConverter进行方法扩展 /// </summary> public s 阅读全文
posted @ 2023-08-16 14:05 Mr_Xul 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 入口文件:App.xaml.cs using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using 阅读全文
posted @ 2023-08-16 13:56 Mr_Xul 阅读(86) 评论(0) 推荐(0) 编辑
摘要: using Newtonsoft.Json; using Newtonsoft.Json.Serialization; namespace Demo { /// <summary> /// Json编码 /// </summary> public class JsonEncode { /// <su 阅读全文
posted @ 2023-08-16 11:56 Mr_Xul 阅读(92) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 根据字段名称取得对象的Lambda表达式 /// </summary> /// <typeparam name="T"></typeparam> /// <param name="column"></param> /// <returns></returns> p 阅读全文
posted @ 2023-08-16 11:34 Mr_Xul 阅读(55) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// DateTime转时间戳 /// </summary> /// <param name="dateTime"></param> /// <returns></returns> public static long GetTimeStamp(DateTime dat 阅读全文
posted @ 2023-04-03 16:25 Mr_Xul 阅读(867) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 加密解密帮助类 /// </summary> public static class EncryptHelper { #region des实现 /// <summary> /// Des默认密钥向量 /// </summary> public static by 阅读全文
posted @ 2023-04-03 16:23 Mr_Xul 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 接口类 /// <summary> /// 数据库模型处理服务基础接口 /// </summary> public interface IDbServiceBase { /// <summary> /// 取得数据库模型上下文 /// </summary> /// <returns></return 阅读全文
posted @ 2023-03-16 11:07 Mr_Xul 阅读(15) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 字符串加密解密类 /// </summary> public static class StringSecurity { /// <summary> /// DES加密 /// </summary> /// <param name="input"></param> 阅读全文
posted @ 2023-03-14 13:26 Mr_Xul 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 这里只列举了string类型的操作,后续持续更新 using StackExchange.Redis; using System.Runtime.Serialization; using System.Xml; namespace WebApi.Services { /// <summary> // 阅读全文
posted @ 2023-02-21 15:16 Mr_Xul 阅读(300) 评论(0) 推荐(0) 编辑