01.
Boxing and UnBoxing in C#source:begin:IntroductionIn this article I will explain the concepts of Boxing and UnBoxing. C# provides us with Value types and Reference Types. Value Types are stored on the stack and Reference type...查看完整版>>
Boxing and UnBoxing in C#
02.
《Effective C#》Item 17:减少装箱(Boxing)和拆箱(Unboxing)操作为了便于文章的开展,首先介绍装箱(Boxing)和拆箱(Unboxing)这两个名词。.Net的类型分为两种,一种是值类型,另一种是引用类型。这两个类型的本质区别,值类型数据是分配在栈中,而引用类型数据分配在堆上。那么...查看完整版>>
《Effective C#》Item 17:减少装箱(Boxing)和拆箱(Unboxing)操作
03.
11.3 Boxing and unboxing11.3 Boxing and unboxingThe concept of boxing and unboxing is central to C#.s type system. It provides a bridge between value-typesand reference-types by permitting any value of a value-type to be con...查看完整版>>
11.3 Boxing and unboxing
04.
Thread and Sync In C# (C#中的线程与同步)Don't believe everything they've told you. Threads in C# are actually pretty easy. 别相信别人告诉你的所有的事。其实C#中的线程是很简单的。A thread is an encapsulation of the flow of control in a progra...查看完整版>>
Thread and Sync In C# (C#中的线程与同步)
05.
IOCP Thread Pooling in C#IOCP Thread Pooling in C#By William KennedyContinuum Technology CenterIntroduction Thread pools allow our server to queue and perform work in the most efficient and scalable way possible. Without th...查看完整版>>
IOCP Thread Pooling in C#
06.
Another method to remove window"s title bar in C#Make the ControlBox property to false and Text property to String.Empty.Your window will be shown with border but no title bar. If change the BorderStyle property to None, you window will not be shown...查看完整版>>
Another method to remove window"s title bar in C#
07.
正态分布的随机数发生器 in C#主要参考《Numerical Recipes in C++ 2/e》p.292~p.294 和《Simulation Modeling and Analysis 3/e》p.465~p.466。Box 和 Muller 在 1958 年给出了由均匀分布的随机变量生成正态分布的随机变量的算法。设 U1, U2 是...查看完整版>>
正态分布的随机数发生器 in C#
08.
Thread safe Singleton in C#public sealed class Singleton { private Singleton() {} private static volatile Singleton _value; private static object syncRoot = new Object(); public static Singleton ...查看完整版>>
Thread safe Singleton in C#
09.
[收藏]IOCP Thread Pooling in C#IOCP Thread Pooling in C#By William KennedyIntroduction When building server based applications in C#, it is important to have the ability to create thread pools. Thread pools allow our server to que...查看完整版>>
[收藏]IOCP Thread Pooling in C#
10.
Thinking in C#About program language such as C++, C#, Java and Delphi, how to choose a good one for a freshman ?This view has pointed by many people here and different person have different ideas. In my opnio...查看完整版>>
Thinking in C#
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。