自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

XiaoFeng开源类库

www.eelf.cn

  • 博客(25)
  • 资源 (1)
  • 收藏
  • 关注

原创 XiaoFeng.Net 网络库使用

XiaoFeng.Net网络库包含了 SocketServer,SocketClient,WebSocketServer,WebSocketClient四个类库SocketServer 网络服务端同时支持Socket客户端连接,WebSocket客户端,浏览器WebSocket连接SocketCleint 网络客户端WebSocketServer WebSocket服务端仅支持WebSocket客户端连接或浏览器WebSocket连接WebSocketClient WebSocket客户端。

2023-08-25 09:38:21 1150

原创 C# 通用数据库操作库

using System;using System.Data;using System.Data.Common;using System.Configuration;using System.Collections.Generic;using System.Text;using System.Reflection;using XiaoFeng.Model.Core;using Sy...

2018-06-07 09:29:08 2959 1

原创 C# 常用方法扩展

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;using System.Reflection;using System.Xml;using System.Collections;using S...

2018-06-07 09:22:40 541

原创 基类扩展方法

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;using System.Reflection;using System.Xml;using System.Collections;using System.Security.Cryptography;using System.Data;using Sy

2021-02-24 15:26:24 227

原创 C# 对象复制 拷贝 当对象中属性是引用类型时 拷贝出现问题的解决

当对象中属性是引用类型时 拷贝出现问题的解决 一直在映射里作处理,大约调试了一下午时间一直复制不成功. 如下类型public class A{ public int ID{get;set;} public string[] Names{get;set;} public Dictionary<string,object> Dic{get;set;} ...

2018-07-17 18:33:01 2061

原创 C# 加密算法MD5

#region 字符串md5加密 /// <summary> /// 字符串md5加密 /// </summary> /// <param name="_">字符串</param> /// <par

2018-07-05 09:31:10 211

原创 C# 加密算法RSA

using System;using System.Security.Cryptography;using System.Text;namespace XiaoFeng.Cryptography{ /// <summary> /// RSA加密解密 /// version : 1.0.0 /// </summary> pub...

2018-07-05 09:21:33 3843 4

原创 C# 加密算法SHA

using System;using System.Security.Cryptography;using System.Text;namespace XiaoFeng.Cryptography{ /// <summary> /// SHA加密解密 /// version : 1.0.0 /// </summary> pub...

2018-07-05 09:19:59 346

原创 C# 加密算法RC4

using System;using System.Text;namespace XiaoFeng.Cryptography{ /// <summary> /// RC4加密解密 /// version : 1.0.0 /// </summary> public class RC4Crypto : ICryptography...

2018-07-05 09:19:17 3828 1

原创 C# 加密算法AES

using System;using System.Security.Cryptography;using System.Text;namespace XiaoFeng.Cryptography{ /// <summary> /// AES加密解密 /// version : 1.0.0 /// </summary> pub...

2018-07-05 09:17:47 1679

原创 C# 加密算法DES

using System;using System.Security.Cryptography;using System.Text;namespace XiaoFeng.Cryptography{ /// <summary> /// DES加密类 /// version : 1.0.0 /// </summary> publ...

2018-07-05 09:16:30 247

原创 数据表转换实例

#region 数据表转换对象列表 /// <summary> /// 数据表转换对象列表 /// </summary> /// <typeparam name="T">对象</typeparam> /// <param name="_">数据表&am

2018-06-20 14:09:46 216

原创 C# 对象复制 拷贝

在我们工作中经常会用到对象复制的情况,比如 A对象为原有对象,把A对象赋值给B对象,记录原有数据,然后对A对象开始操作改变值,接着想知道 A都改变了那些值 都会先这样写:A a = new A();a.ID = 10;a.Name = "jacky";A b = a;a.ID = 11;a.Name = "zhuovi";然后 结果并不是我们想要的,a b 两对象的值都...

2018-06-13 10:23:20 27258 1

原创 C# 发送邮件 操作类

using System;using System.Collections.Generic;using System.Text;namespace XiaoFeng{ /* =================================================================== Author : jacky Email ...

2018-06-12 10:57:30 935

原创 C# 获取请求(参数,表单,Header) 数据操作类

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Web;using Newtonsoft.Json;using System.Reflection;using System.Colle...

2018-06-12 10:55:04 12098

原创 C# 路由重写 地址重写 操作类

using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Text;using System.Text.RegularExpressions;using System.Threading.Tasks;using System.Web;using XiaoF...

2018-06-07 09:35:26 1112

原创 C#通用输出类

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Xml.Serialization;using XiaoFeng;using Newtonsoft.Json;using Newtonsoft.Json.Converters;using Syst...

2018-06-07 09:33:46 1532

原创 C# Cookie操作类

using System;using System.Collections.Generic;namespace XiaoFeng.Web{ #region Cookie操作类 V 1.1 /// <summary> /// Cookie操作类 V 1.1 /// Author: jacky /// QQ: 7092734 /// C...

2018-06-07 09:32:19 2044

原创 C# WebClient 二次封装 添加Cookie及相关属性

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Net;using System.ComponentModel;namespace XiaoFeng{ /* ====...

2018-06-07 09:31:01 4260

原创 C# 网址 参数 操作类

using System;using System.Collections.Generic;using System.Text.RegularExpressions;using System.Linq;namespace XiaoFeng{ #region 参数操作类 第一种内核 /// <summary> /// 参数操作类 第一种内核 第二种 Pa...

2018-06-07 09:27:12 406

原创 C# XML 序列化 反序列化 操作类

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Xml;using System.IO;using XiaoFeng;using System.Xml.Serialization;n...

2018-06-07 09:25:33 999

原创 C# 生面随机字符串操作类

using System;using System.Collections.Generic;namespace XiaoFeng{ #region 随机生成字符串 /// <summary> /// 随机生成字符串 /// Verstion : 1.1.0 /// Create Time : 2018/01/23 11:01:07 ...

2018-06-07 09:23:43 445

原创 C#日志操作类

using System;using System.Collections.Generic;using System.Web;using System.Threading;using System.IO;using System.Text.RegularExpressions;namespace XiaoFeng{ /// <summary> /// 日...

2018-06-07 09:19:16 4876 5

原创 Cahce缓存操作类

缓存操作类

2017-08-15 11:17:04 250

原创 RegexPattern

常用正则

2017-08-15 10:57:44 1591

正则测试工具

测试正则表达式工具,里面有教程,就这一个工具就可以学会正则是怎么用的

2018-06-12

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除