摘要:
#if、#else、#elif、#endif 这组指令主要用于在调试环境下代码进行条件编译时,用于控制编译器对某个代码段是否进行编译。 #define release using System; using System.Collections.Generic; using System.Linq; 阅读全文
摘要:
延迟初始化出现于.NET 4.0,主要用于提高性能,避免浪费计算,并减少程序内存要求。也可以称为,按需加载。 基本语法: Lazy<T> xx = new Lazy<T>();//xx代表变量名 举例实现: 首先创建一个Student类,代码如下: using System; namespace L 阅读全文