摘要:
监控文件夹测试程序: 1 using System; 2 using System.Collections.Generic; 3 using System.IO; 4 using System.Linq; 5 using System.Text; 6 using System.Threading; 阅读全文
摘要:
USE WebExam; GO ALTER DATABASE WebExam SET RECOVERY SIMPLE; GO -- 收缩文件到 1 MB. DBCC SHRINKFILE (WebExam_Log, 1); GO ALTER DATABASE WebExam SET RECOVERY FULL; GO 阅读全文
摘要:
新建两个项目:类库(Model)和控制台应用程序(ReflectTest)。 在【Model】中添加一个类【User】: 1 namespace Model 2 { 3 public class User 4 { 5 public string Show() 6 { 7 return "Test Ref... 阅读全文