摘要:
--设置SQL Server 的一些高级属性 允许被修改; sp_configure 'show advanced options' ,1 ; GO reconfigure ; GO --SQL Server 启用 扩展存储过程:xp_cmdshell,此存储过程可以让SQL Server 可以执行 阅读全文
摘要:
-- ◆ 继承base class Program { static void Main(string[] args) { C b = new C(); b.f(); Console.ReadLine(); } } public class A { public void f() { Console 阅读全文
摘要:
类 的 静态构造函数 和 普通构造函数。在类实例化时,会先执行静态构造函数;类没有实例化时,只会调用静态构造函数; public class A { public static int i = 0; public int j = 0; public A() { j = i + 1; } static 阅读全文