C#
zhou44129879
这个作者很懒,什么都没留下…
展开
-
Visual Studio 2013 a new feature, Code Lens
Visual Studio 2013 introduced a new feature, Code Lens, where it shows you how many times each of your methods are called/referenced, how many unit tests cover the method, and how many are passing原创 2013-11-07 16:27:38 · 1511 阅读 · 0 评论 -
Windows进程间通信的各种方法
进程是装入内存并准备执行的程序,每个进程都有私有的虚拟地址空间,由代码、数据以及它可利用的系统资源(如文件、管道等)组成。多进程/多线程是Windows操作系统的一个基本特征。Microsoft Win32应用编程接口(Application Programming Interface, API)提供了大量支持应用程序间数据共享和交换的机制,这些机制行使的活动称为进程间通信(InterProc转载 2015-03-25 19:59:25 · 616 阅读 · 0 评论 -
Why catch(Exception)/empty catch is bad
You’ve seen the advice before—it’s not a good programming practice to catch System.Exception. Because managed exceptions are hierarchical, catching the top of the hierarchy—e.g., catch(Exception转载 2015-03-06 17:04:03 · 612 阅读 · 0 评论 -
Difference Between Finalize and Dispose Method
NET Framework provides two methods Finalize and Dispose for releasing unmanaged resources like files, database connections, COM etc. This article helps you to understand the difference between Fin转载 2015-03-06 17:02:52 · 541 阅读 · 0 评论