摘要:
for (int i = 0; i < tempint.GetLength(0); i++) { for (int j = 0; j < tempint.GetLength(1); j++) { //tempint[i, j] = i + j; ... 阅读全文
摘要:
create proc ProcSetOpenMonth(@GcompanyUser varchar(120),@months int) as begin declare @PoorNum int if exists(select * from Hr_OpenMonth where GcompanyUser=@GcompanyUser) begin --if(datediff(d,GstartDa... 阅读全文
摘要:
public void Dirs(string Path) { System.IO.DirectoryInfo dirs = new System.IO.DirectoryInfo(Path); foreach (FileInfo fi in dirs.GetFiles("*.htm")) ... 阅读全文