摘要: string guid = Guid.NewGuid().ToString(); // db2429d9-872c-4799-b6e5-b239b878e933 string guidN = Guid.NewGuid().ToString("N"); // db2429d9872c4799b6e5b 阅读全文
posted @ 2020-07-28 21:29 SelenaZhou 阅读(1635) 评论(0) 推荐(0) 编辑
摘要: ****字段名 ************ 类型 ************ 属性 ************ 说明 ApplicationId **** uniqueidentifier **** FK: appnet_App/ApplciationId **** 应用程序Id UserId **** 阅读全文
posted @ 2020-07-28 17:55 SelenaZhou 阅读(121) 评论(0) 推荐(0) 编辑
摘要: //定义一个Hashtable public static Hashtable hstFileInfo = new Hashtable(); //给Hashtable添加数据 if (!hstFileInfo.Contains(ID)) { hstFileInfo.Add(ID, Name); } 阅读全文
posted @ 2020-07-28 17:31 SelenaZhou 阅读(4174) 评论(0) 推荐(0) 编辑
摘要: string strPath = @"C:\Work\DocG"; DirectoryInfo Direct = new DirectoryInfo(strPath); foreach (FileInfo file in Direct.GetFiles()) { string Filename = 阅读全文
posted @ 2020-07-28 17:24 SelenaZhou 阅读(757) 评论(0) 推荐(0) 编辑