
C#
网际游侠
86年的程序员,F-basic,开始编程,
展开
-
C#类 时间操作类
using System; using System.Collections.Generic; using System.Text; namespace ZXF { class FK_TIME { #region 获得两个日期的间隔 /// <summary> /// 获得两个日期的间隔 /// <...原创 2020-04-14 14:28:23 · 155 阅读 · 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 · 187 阅读 · 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 · 260 阅读 · 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 · 116 阅读 · 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 · 300 阅读 · 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 · 200 阅读 · 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 · 419 阅读 · 0 评论