摘要:
public AtmDataBase DeepClone(){ MemoryStream ms = new MemoryStream(); BinaryFormatter bf = new BinaryFormatter(); bf.Serialize(ms, this); ms.P... 阅读全文
摘要:
ASP.NET Web API 是非常棒的技术。编写 Web API 十分容易,以致于很多开发者没有在应用程序结构设计上花时间来获得很好的执行性能。在本文中,我将介绍8项提高 ASP.NET Web API 性能的技术。1) 使用最快的 JSON 序列化工具JSON 的序列化对整个 ASP.NET ... 阅读全文
摘要:
/** 下面两个函数都能对浮点数进行四舍五入,保留小数点后两位 **/function CurrencyFormatted(amount) { var i = parseFloat(amount); if(isNaN(i)) { i = 0.00; } var minus = ''... 阅读全文
摘要:
WebServices(http://www.webxml.com.cn/WebServices/WeatherWebService.asmx)来实现天气预报,该天气预报 Web 服务,数据来源于中国气象局http://www.cma.gov.cn/,数据每2.5小时左右自动更新一次,准确可靠。包括... 阅读全文