摘要: 1.工具类 /// <summary> /// 深复制扩展类,需要T支持可序列化 /// </summary> public class DeepCopyExtensions<T> { /// <summary> /// 对象深复制方法 /// 不管是值类型的成员还是引用类型的成员,在对象副本中对任 阅读全文
posted @ 2019-10-25 18:32 jeff151013 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 1.工具类 using System;using System.Globalization;namespace Infrastructure{ public static class DateTimeExtensions { /// <summary> /// 当前时间 /// </summary> 阅读全文
posted @ 2019-10-25 18:22 jeff151013 阅读(672) 评论(0) 推荐(0) 编辑
摘要: 1.工具类 using System.Collections.Generic;using Newtonsoft.Json;namespace Infrastructure{ public static class DataTransferExtensions { /// <summary> /// 阅读全文
posted @ 2019-10-25 18:03 jeff151013 阅读(495) 评论(0) 推荐(0) 编辑
摘要: 1.工具类 using System;using System.Data;using System.IO;using System.IO.Compression;using System.Runtime.Serialization.Formatters.Binary;using System.Xml 阅读全文
posted @ 2019-10-25 17:59 jeff151013 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 1.功能类 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;namespace Infrastructure{ public static class Enumer 阅读全文
posted @ 2019-10-25 17:50 jeff151013 阅读(367) 评论(0) 推荐(0) 编辑
摘要: 1.功能类 using System;using System.Collections.Generic;using System.ComponentModel;using System.IO;using System.Linq;using System.Reflection;using System 阅读全文
posted @ 2019-10-25 17:46 jeff151013 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 1.QueueHelper using System.Collections.Concurrent;using System.Runtime.CompilerServices;namespace WindowsFormsServer.Helper{ public static class Queue 阅读全文
posted @ 2019-10-25 17:34 jeff151013 阅读(899) 评论(0) 推荐(0) 编辑
摘要: 1.地图使用的是高德。效果如下图: 2.前端代码: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><ht 阅读全文
posted @ 2019-07-11 19:18 jeff151013 阅读(435) 评论(0) 推荐(0) 编辑
摘要: 1.使用的是高德地图,(鼠标指向显示提示详细信息),运行效果: 2.前端代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transiti 阅读全文
posted @ 2019-07-11 19:11 jeff151013 阅读(612) 评论(0) 推荐(0) 编辑
摘要: 84坐标系是“WGS-84坐标系”的简称,指的是1984年世界大地坐标系。84坐标系支持的地图厂商:Google map。国内因为一些特殊原因,没有地图厂商使用84坐标系。02坐标系是“GCJ-02坐标系”的简称,又叫火星坐标系,是在84坐标系基础上加密了一次后形成的。02坐标系支持的地图厂商:高德 阅读全文
posted @ 2019-07-11 19:03 jeff151013 阅读(839) 评论(0) 推荐(0) 编辑