
C#lib
c#的方面类库搜集
零点零一
Make it right before you make it faster. Keep it right when you make it faster. Make it clear before you make it faster. Do not sacrifice clarity for small gains in efficiency. -- Brian Kernighan
展开
-
2021-07-23
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { public delegate void MyFunction(string msg); public static void Main(stri.原创 2021-07-23 10:19:10 · 97 阅读 · 0 评论 -
AutoResetEvent 的例子
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace testmono { class WaitOne { static AutoResetEvent autoEvent = new AutoResetEvent(false); .原创 2021-07-23 10:08:57 · 220 阅读 · 0 评论