02 2016 档案

摘要:Array.prototype.indexOf = function (val) { for (var i = 0; i < this.length; i++) { if (this[i] == val) return i; } return -1; }; Array.prototype.remov 阅读全文
posted @ 2016-02-28 13:47 -Ward- 阅读(61485) 评论(2) 推荐(0)
摘要:我的文档\Visual Studio 2015\Settings\CurrentSettings.vssettings Environment_Toolbox 节点 <Category name="Environment_Toolbox" Category="{481999F2-7479-4e03- 阅读全文
posted @ 2016-02-19 20:30 -Ward- 阅读(1646) 评论(0) 推荐(0)
摘要:public static class MapperExtensions { public static TResult MapTo<TResult>(this object self, TResult result) { if (self == null) throw new ArgumentNu 阅读全文
posted @ 2016-02-15 23:41 -Ward- 阅读(653) 评论(0) 推荐(0)