C#
网际游侠
世界上的人脸面孔是有极限的,80万大概是有一个人面孔和你一样,人们就通过痣 、疤、 身高、 体重、服装等来区分另一个和自己一样的面孔,我叫郑晓峰,欢迎认识我。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C#类 时间操作类
using System; using System.Collections.Generic; using System.Text; namespace ZXF { class FK_TIME { #region 获得两个日期的间隔 /// <summary> /// 获得两个日期的间隔 /// <...原创 2020-04-14 14:28:23 · 181 阅读 · 0 评论 -
C#类 文件操作类
using System; using System.Collections.Generic; using System.Text; using System.IO ; using System.Collections; namespace zxf { public class FK_FILE { private static ArrayList AllFolde...原创 2020-04-14 14:26:17 · 216 阅读 · 0 评论 -
C#类 加密解密类
using System; using System.Collections.Generic; using System.Text; using System.Security.Cryptography; using System.IO; namespace ZXF { //加密解密Encryption and decryption class FK_EDPT { ...原创 2020-04-14 14:25:12 · 296 阅读 · 1 评论 -
C#类 希尔排序 选择排序 冒泡排序类
using System; using System.Collections.Generic; using System.Text; namespace ZXF { class FK_DATA { /// <summary> /// 插入排序 /// </summary> /// <pa...原创 2020-04-14 14:24:17 · 135 阅读 · 0 评论 -
C#类 字符验证类 ip验证 邮箱验证等
using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; namespace ZXF { class FK_CHECK { #region 判断对象是否为空 /// <summary> ...原创 2020-04-14 14:23:06 · 327 阅读 · 0 评论 -
C#类 连接接ACCESS数据库类
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.OleDb; namespace ZXF { class FK_ACCESS : IDisposable { /// <summary> ...原创 2020-04-14 14:20:54 · 227 阅读 · 0 评论 -
C# 冒泡排序
int[] A1=new int[]{1,2,3,4,5,6,7,8,9,0,11,12,13,14,15,16,17,18,10}; int i,j; int temp; for (i=0;i { for(j=i;j {原创 2013-01-20 19:04:31 · 436 阅读 · 0 评论
分享