摘要: 前言:window的命名规则禁止创建aux、con等命名文件和文件夹。 如果需要创建该文件或目录,请使用cmd控制台创建,如下指令: 创建文件夹 D:\test>md aux\ 删除文件夹 D:\test>rd aux\ 创建文件 D:\test>copy nul \\.\D:\aux.txt 已复 阅读全文
posted @ 2023-06-12 13:32 赤原 阅读(393) 评论(1) 推荐(0) 编辑
摘要: 为什么string是引用类型?C#里面众所周知,有两大类型,分别引用类型和值类型。引用类型有类(class)和字符串(string),而值类型有int、double、char、bool等等。 分析string为什么是引用类型之前,要分析一下,int整型和bool布尔值为什么是值类型。int和bool 阅读全文
posted @ 2020-06-18 22:05 赤原 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 前言 昨天因为小程序功能要获取小程序程序码,看了微信文档爬了好多坑。(留一下记录以防后面被坑) 操作 因为我获取到了微信那里的图片的图片流一直不知道怎么处理,今天总算找到相关文档,解决了。因为数据流不能直接传给前端,只好把buffer流转成图片保存在服务器上,没办法啊~ 废话不多说上代码 因为是in 阅读全文
posted @ 2019-05-08 10:37 赤原 阅读(14265) 评论(9) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Web; using System.Net; using test; using N 阅读全文
posted @ 2019-02-19 10:22 赤原 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 1.使用的引用配置顺序 <script src="utf8-net/ueditor.config.js"></script> <script src="utf8-net/ueditor.all.min.js"></script> 2.使用 html <script type="text/plain" 阅读全文
posted @ 2018-05-23 11:03 赤原 阅读(174) 评论(0) 推荐(0) 编辑