上一页 1 ··· 325 326 327 328 329 330 331 332 333 ··· 388 下一页
摘要: https://msdn.microsoft.com/en-us/library/ebca9ah3.aspx The override modifier is required to extend or modify the abstract or virtual implementation of 阅读全文
posted @ 2016-03-09 17:12 ChuckLu 阅读(368) 评论(0) 推荐(0) 编辑
摘要: https://msdn.microsoft.com/en-us/library/9fkccyh4.aspx The virtual keyword is used to modify a method, property, indexer, or event declaration and all 阅读全文
posted @ 2016-03-09 16:54 ChuckLu 阅读(299) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/4253454/question-about-listening-and-backlog-for-sockets The listen backlog is, as Pieter said, a queue which is us 阅读全文
posted @ 2016-03-08 13:40 ChuckLu 阅读(284) 评论(0) 推荐(0) 编辑
摘要: 把属性View设置为Details,确保列可以显示出来 this.listView1.View = System.Windows.Forms.View.Details; 属性Columns根据需要添加 this.listView1.Columns.AddRange(new System.Window 阅读全文
posted @ 2016-03-08 09:18 ChuckLu 阅读(568) 评论(0) 推荐(0) 编辑
摘要: https://msdn.microsoft.com/en-us/library/z6zx288a(v=vs.110).aspx The System.Threading.Semaphore class represents a named (systemwide) or local semapho 阅读全文
posted @ 2016-03-07 11:22 ChuckLu 阅读(484) 评论(0) 推荐(0) 编辑
摘要: https://msdn.microsoft.com/en-us/library/system.threading.semaphoreslim(v=vs.110).aspx Represents a lightweight alternative to Semaphore that limits t 阅读全文
posted @ 2016-03-07 10:59 ChuckLu 阅读(1242) 评论(0) 推荐(0) 编辑
摘要: http://www.albahari.com/threading/part2.aspx#_Mutex A Mutex is like a C# lock, but it can work across multiple processes. In other words, Mutex can be 阅读全文
posted @ 2016-03-07 10:40 ChuckLu 阅读(283) 评论(0) 推荐(0) 编辑
摘要: http://www.albahari.com/threading/part2.aspx#_Semaphore A semaphore is like a nightclub: it has a certain capacity, enforced by a bouncer. Once it’s f 阅读全文
posted @ 2016-03-07 10:29 ChuckLu 阅读(345) 评论(0) 推荐(0) 编辑
摘要: http://stackoverflow.com/questions/9647641/resharper-warns-static-field-in-generic-type It's fine to have a static field in a generic type, so long as 阅读全文
posted @ 2016-03-02 15:27 ChuckLu 阅读(516) 评论(0) 推荐(0) 编辑
摘要: FileStream vs/differences StreamWriter? http://stackoverflow.com/questions/4963667/filestream-vs-differences-streamwriter What is different between Fi 阅读全文
posted @ 2016-03-02 10:41 ChuckLu 阅读(290) 评论(0) 推荐(0) 编辑
上一页 1 ··· 325 326 327 328 329 330 331 332 333 ··· 388 下一页