随笔分类 - C#
摘要:服务运行环境 windows server2019,开发工具VS2022 1. 配置fax服务,勾上图中的选项 2. 项目属性-》添加com引用-》选择Microsoft Fax Service,这里一定要注意,f 开头的两个版本不对,一定要引用M开头的版本 3.发送传真的具体方法 //自定义发送类
阅读全文
摘要:上代码 //hex 字符串转为base64字符串 public string HexString2B64String(string input) { return System.Convert.ToBase64String(HexStringToHex(input)); } // hex字符串转为h
阅读全文
摘要:EF版本6.x.x 在项目里添加一个拦截器Interceptor public class WithNoLockInterceptor: DbCommandInterceptor { private static readonly Regex TableAliasRegex = new Regex(
阅读全文
摘要:Client端: public static UploadMediaResponseModel HttpRequest(string url, UploadMediaRequestModel requestParam, HttpMethod method, string refName) { var
阅读全文
摘要:1 namespace GetMacCore 2 { 3 using System; 4 using System.IO; 5 using System.Management; 6 using System.Text; 7 8 internal class Program 9 { 10 public
阅读全文
摘要:引入SkiaSharp的nuget包,注意,如果项目运行到docker里,需要安装SkiaSharp.NativeAssets.Linux.NoDependencies //画文字 public static SKImage CreateSKImage(string code) { var pain
阅读全文
摘要:Microsoft.EntityFrameworkCore 5.X依赖的 netstandard2.1版本, 而3.X依赖的是netstandard2.0版本,netstandard2.1相比2.0版本增加了很多新功能,也做了一些修改 Microsoft.EntityFrameworkCore直接跳
阅读全文

浙公网安备 33010602011771号