2.区域预处理指令#region 和 #endregion就是将代码折叠在一个区域中
3.条件预处理指令,在某种条件下才会执行
#if (DEBUG)
Console.WriteLine("this is a test");
#elif
Console.WriteLine("you can see the elif ");
#else
Console.WriteLine("you can see the else");
#endif
4. #undef DEBUG ,不在某种模式下才会执行代码 (
这个没找到,存在性有待核实)
5.#warning I'm not inside,产生错误的提示,在错误对话框中
6.#error this is a error,这是发生了一个错误
7.#line 200 "fiilename" ,将本行改变为200行,将文件名修改为filename
#line default ,再把行号改回来
8.#pragma warnning disable 444 忽略下面代码中产生的444警告
#pragma warnning restore 444 恢复警告
#pragma checksum比较复杂