摘要: C#读写锁ReaderWriterLockSlim的使用 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using Syste 阅读全文
posted @ 2021-02-19 14:41 WellMandala 阅读(537) 评论(0) 推荐(0) 编辑
摘要: 转载 略谈GCHandle C# - Marshal.StructureToPtr方法简介 Marshal类 两个方法StructureToPtr和PtrToStructure实现序列化 字节 数组 转换 using System; using System.Collections.Generic; 阅读全文
posted @ 2021-02-19 10:10 WellMandala 阅读(1955) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Runtime.InteropServices; using System.Text; using System.Threading.Tas 阅读全文
posted @ 2021-02-19 09:25 WellMandala 阅读(1148) 评论(0) 推荐(0) 编辑
摘要: C# 6.0 11个新特性 阅读全文
posted @ 2021-02-18 17:03 WellMandala 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 转载,记录学习 https://blog.csdn.net/qc530167365/article/details/83108848 阅读全文
posted @ 2021-02-18 16:22 WellMandala 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 转载 https://www.cnblogs.com/lxshwyan/p/10828305.html 如果使用了configSection节点,则configSection必须位于根节点的第0个。App.config中代码如下: <?xml version="1.0" encoding="utf- 阅读全文
posted @ 2021-02-18 14:20 WellMandala 阅读(104) 评论(0) 推荐(0) 编辑
摘要: where关键字的用法 where关键词一个最重要的用法就是在泛型的声明、定义中做出约束。 约束又分为接口约束、基类约束、构造函数约束、函数方法的约束。 1.接口约束,泛型参数必须实现相应的接口才可以 using System; using System.Collections.Generic; u 阅读全文
posted @ 2021-02-18 13:16 WellMandala 阅读(342) 评论(0) 推荐(0) 编辑
摘要: Enum的转换,用Enum.Parse() Enum.Parse()方法。这个方法带3个参数,第一个参数是要使用的枚举类型。其语法是关键字typeof后跟放在括号中的枚举类名。第二个参数是要转换的字符串,第三个参数是一个bool,指定在进行转换时是否忽略大小写。最后,注意Enum.Parse()方法 阅读全文
posted @ 2021-02-18 10:41 WellMandala 阅读(1861) 评论(0) 推荐(0) 编辑
摘要: 转载 perl中use strict的用法 如果你使用 use strict 的话,它会强迫你用 my 声明变量,否则将会报上述错误。 阅读全文
posted @ 2021-02-04 15:26 WellMandala 阅读(289) 评论(0) 推荐(0) 编辑
摘要: 转载 Perl 循环 循环控制语句 循环控制语句改变了代码的执行顺序,通过它你可以实现代码的跳转。 Perl 提供了下列的循环控制语句: 控制语句描述 next 语句 停止执行从next语句的下一语句开始到循环体结束标识符之间的语句,转去执行continue语句块,然后再返回到循环体的起始处开始执行 阅读全文
posted @ 2021-02-04 13:16 WellMandala 阅读(87) 评论(0) 推荐(0) 编辑