摘要:
https://www.cnblogs.com/skyfsm/p/7401523.html
阅读全文
posted @ 2020-09-09 14:27
Manuel
阅读(132)
推荐(0)
摘要:
https://www.cnblogs.com/malinqing/p/11272485.html
阅读全文
posted @ 2020-09-09 09:11
Manuel
阅读(156)
推荐(0)
摘要:
https://blog.csdn.net/FliesOfTime/article/details/100688367
阅读全文
posted @ 2020-09-01 15:55
Manuel
阅读(156)
推荐(0)
摘要:
委托的本质,是一个类,而事件,是一个委托类型的私有变量加上两个公有方法(事件的+=和-=),这是本质区别。打个比方,string 也是一个类,而string s = "a",这个s是string类型的一个变量(略有不恰当,为了方便直观理解)。public delegate void myDel();
阅读全文
posted @ 2020-08-20 10:24
Manuel
阅读(1386)
推荐(0)
摘要:
完整版: using System; using System.Collections.Generic; using System.Linq; using System.Runtime.CompilerServices; using System.Text; using System.Threadi
阅读全文
posted @ 2020-08-18 20:32
Manuel
阅读(297)
推荐(0)
摘要:
1.初步了解: (1)事件:指的是能够发生的什么事情。比如公司上市,这里的上市就是事件(比事情更正式。)。 (2)在c#中的定义:是类型的成员。是一种使对象或类具备了通知能力的成员。 (3)事件参数:经由事件发送过来的,与事件本身相关的消息,称为事件参数。 作用:比如,当手机的关注者收到通知之后,就
阅读全文
posted @ 2020-08-18 19:32
Manuel
阅读(320)
推荐(0)
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Timers; using System.
阅读全文
posted @ 2020-08-18 19:24
Manuel
阅读(129)
推荐(0)
摘要:
递归读取字典形式的对象,写入xml文件 using System; using System.Collections; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threa
阅读全文
posted @ 2020-08-17 19:05
Manuel
阅读(327)
推荐(0)
摘要:
层级字典构造: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; na
阅读全文
posted @ 2020-08-12 10:26
Manuel
阅读(177)
推荐(0)
摘要:
#region 自动生成xml文件 public void GenerateXML(string path, string filename, Mat mat, PredictResult result) { XmlDocument xmlDoc = new XmlDocument(); //创建类
阅读全文
posted @ 2020-08-11 09:46
Manuel
阅读(706)
推荐(0)