摘要:
string guid = Guid.NewGuid().ToString(); // db2429d9-872c-4799-b6e5-b239b878e933 string guidN = Guid.NewGuid().ToString("N"); // db2429d9872c4799b6e5b 阅读全文
摘要:
****字段名 ************ 类型 ************ 属性 ************ 说明 ApplicationId **** uniqueidentifier **** FK: appnet_App/ApplciationId **** 应用程序Id UserId **** 阅读全文
摘要:
//定义一个Hashtable public static Hashtable hstFileInfo = new Hashtable(); //给Hashtable添加数据 if (!hstFileInfo.Contains(ID)) { hstFileInfo.Add(ID, Name); } 阅读全文
摘要:
string strPath = @"C:\Work\DocG"; DirectoryInfo Direct = new DirectoryInfo(strPath); foreach (FileInfo file in Direct.GetFiles()) { string Filename = 阅读全文