01 2021 档案
摘要:using System; using System.Web; namespace ConsoleApplication5 { /// <summary> /// Cookie 助手 /// </summary> public sealed class CookieHelper { /// <sum
阅读全文
摘要:今天是2021念的1月28号,时间荏苒,白驹过隙,仿佛2015年就是去年的事。 一:HashTable 使用键值对Key-Vaule来保存数据,Key和Vaule都是Object类型,所以当在保存和遍历的时候会发生数据转换,将Object转换成业务所需的数据类型, 那么会发生拆箱装箱操作,性能会降低
阅读全文
摘要:还有两周就要除夕过新年,今天来篇博客吧 好,言归正传。 场景:当我们需要返回同样的实体时,定义如下类,那么可以不用针对每次的返回结果来重复定义类。 /// <summary> /// http响应实体。Serializable表明可以被序列化,但不能被继承 /// </summary> [Seria
阅读全文
摘要:1.在 TextBox 中文字离左边框的距离用 Padding ; 控制文字在TextBox 的距离用 HorizontalContentAlignment 和 VerticalContentAlignment ; <TextBox Text="20000000" Padding="10,0,0,0
阅读全文
摘要:1.Nuget下载Nancy和Nancy.Hosting.Self,两个都是2.0.0版本。 1.开启本地被http请求端口 try { NancyHost host = new NancyHost(new Uri("http://localhost:59355")); HostConfigurat
阅读全文