摘要:
I created a web application which required to keep the session with the Domino server active. The current server settings is only 30 minutes. Changing that is not an option because it will effect othe... 阅读全文
摘要:
前几天我一个朋友问我,在子类中为什么不能访问父类的protected方法?她在某本书上看到的代码大概是如下所示: public class A { public string Name = ""; protected int Age = 0; } public class AB : A { public void Init() { A a = new A(); a.Name = "lifenggu... 阅读全文