摘要:
class Program { public static List<int> list; static void Main(string[] args) { Console.WriteLine("请输入下限:"); int min = Convert.ToInt32(Console.ReadLine()); Console.WriteLine("请输入上限:"); int max = Convert.ToInt32(Console.ReadLine(... 阅读全文
摘要:
public delegate void SayHello(string name); class Program { static void Main(string[] args) { SayHello sayHello; sayHello = English; sayHello += Chinese; sayHello("Baby"); Console.ReadLine(); } public static... 阅读全文
摘要:
B/S(Brower/Server)以访问方式为主,包含客户端浏览器、web应用服务器、数据库服务器的软件系统。一般的B/S结构,都是多层架构的,有界面层、业务逻辑层、数据层。由于这种结构不需要客户端的安装,客户端主要通过浏览器来访问,因此客户端测试的重点是:客户端操作系统(不同类型和版本)、客户端 阅读全文