05 2024 档案

nuget 离线使用方法
摘要:要从另一项目导入nuget包,找到 packages 目录完整路径 在 nuget 管理页面,设置源那里增加一个源,路径设置为 packages 的完整路径,名子随便起 然后,选择这个源,就可以选择安装其中包含的nuget包了 阅读全文

posted @ 2024-05-28 16:03 空明流光 阅读(143) 评论(0) 推荐(0) 编辑

c# 通过 SendMessage 实现跨进程数据通信
摘要:using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文

posted @ 2024-05-26 18:47 空明流光 阅读(155) 评论(0) 推荐(0) 编辑

Uri.EscapeDataString 和 Server.UrlEncoding 的区别
摘要:今天在iis中访问一个即含有空格又含有#的文件名时,通过 iis 直接访问都无法到达,显示404,即便是 urlencode 文件名后依然无济于事,最后通过 gpt 问到了答案。 Uri.EscapeDataString和Server.UrlEncode是.NET Framework中用于URL编码 阅读全文

posted @ 2024-05-17 14:41 空明流光 阅读(147) 评论(0) 推荐(0) 编辑

.net maui tts 文本朗读
摘要:// 定义朗读文本 string text = "这是我的应用程序!"; // 获取可用的朗读人 var locales = await TextToSpeech.GetLocalesAsync(); // 选择特定的朗读人var chosenLocale = locales.FirstOrDefa 阅读全文

posted @ 2024-05-07 13:43 空明流光 阅读(73) 评论(0) 推荐(0) 编辑

导航