上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 在解决方案中托管流时,它们变得可移植,从而可以毫不费力地将这些流及其所有组件从一个环境移动到另一个环境。 一个典型的用例是独立软件供应商 (ISV) 在沙盒环境中开发流,然后将这些流移动到测试环境中。 测试完成后,ISV 将这些流移动到购买这些流的客户的生产环境中。 相比在解决方案中创建流,然后移动 阅读全文
posted @ 2023-02-13 15:21 highlightyys 阅读(164) 评论(0) 推荐(0) 编辑
摘要: using Amazon.S3; using Amazon.S3.Encryption; using Amazon.S3.Model; using Amazon.S3.Transfer; using System; using System.Collections.Generic; using Sy 阅读全文
posted @ 2022-10-24 16:33 highlightyys 阅读(17) 评论(0) 推荐(0) 编辑
摘要: public class MailHelper { static string MailFrom = ConfigurationManager.AppSettings["MailFrom"].ToString(); static string MailFromAccount = Configurat 阅读全文
posted @ 2022-10-24 16:30 highlightyys 阅读(145) 评论(0) 推荐(0) 编辑
摘要: XMLHelper xML = new XMLHelper(); var dic = xML.GetData("ActualInfoTypes", "TypeName"); string value = string.Empty; dic.TryGetValue(name, out value); 阅读全文
posted @ 2022-10-24 16:28 highlightyys 阅读(12) 评论(0) 推荐(0) 编辑
摘要: public static bool ExportE<T>(string output, string fileName, List<T> datalist, Dictionary<string, string> name) where T : class { try { if (datalist. 阅读全文
posted @ 2022-10-24 16:11 highlightyys 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 安装Microsoft.SharePointOnline.CSOM 1.根据sapno,更新状态 List<ListItem> listAll = new List<ListItem>(); using (ClientContext clientContext = new ClientContext 阅读全文
posted @ 2022-10-24 15:57 highlightyys 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 1.安装程序包log4net.dll 2.AssemblyInfo.cs文件添加 [assembly: log4net.Config.XmlConfigurator(Watch = true)] 3.App.config添加 <?xml version="1.0" encoding="utf-8" 阅读全文
posted @ 2022-10-24 15:49 highlightyys 阅读(19) 评论(0) 推荐(0) 编辑
摘要: using (var stream = System.IO.File.Open(textBox1.Text, FileMode.Open, FileAccess.Read)) { using (IExcelDataReader reader = ExcelReaderFactory.CreateRe 阅读全文
posted @ 2022-10-24 15:32 highlightyys 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 1.引入log4net.dll 2.创建log4net.config <?xml version="1.0" encoding="utf-8" ?> <configuration> <!--Log4Net--> <!-- Level的级别,由高到低 --> <!-- None > Fatal > E 阅读全文
posted @ 2022-05-30 17:26 highlightyys 阅读(38) 评论(0) 推荐(0) 编辑
摘要: public static object CloneObject(object o) { Type t = o.GetType(); PropertyInfo[] properties = t.GetProperties(); Object p = t.InvokeMember("", System 阅读全文
posted @ 2022-05-30 17:21 highlightyys 阅读(15) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页