正數(包括小數):/^[+]{0,1}(\d+)$|^[+]{0,1}(\d+\.\d+)$/正整數(不包括小數):/^[+]{0,1}(\d+)$/
獨孤劍
2018-07-02 22:19
閱讀:1458
要求.NET Framework 3.5 以上static void Main(string[] args){int index = 2; // 當前頁int count = 20; // 每頁條目數List list = new List();for (int i = 0; i 0){pageList = list.Skip((index - 1) * count).T
獨孤劍
2018-06-19 09:03
閱讀:1812
static void Main(string[] args){string[] arr = { "a", "b", "c", "d", "e" };if (Array.IndexOf(arr, "a") >= 0){// 存在Console.Write("存在");}else{// 不存在Console.Write("不存在");}Console.ReadLine();}
獨孤劍
2018-06-08 11:30
閱讀:2000
C# Liststatic void Main(string[] args){// using System.Linq;List list = new List();list.Add("a");list.Add("a");list.Add("b");list.Add("c");list.Add("d");list.Add("d");list = list.Distinct().ToList();}
獨孤劍
2018-06-08 11:24
閱讀:4255
如果用的是USB Wifi換一個無線網卡,當前的無線上網卡驅動有問題
獨孤劍
2018-05-28 09:28
閱讀:2854
一 月:January 簡寫:Jan.二 月:February 簡寫:Feb.三 月:March 簡寫:Mar.四 月:April 簡寫:Apr.五 月:May 簡寫:May.六 月:June 簡寫:Jun.七 月:July 簡寫:Jul.八 月
獨孤劍
2018-05-21 09:56
閱讀:2542
C# 判斷數組中是否存在某個數組值, 數組包含某項static void Main(string[] args){// 第一種方法int[] array = { 1, 2, 3 };if (Array.IndexOf(array, 1) == -1){// 不存在Console.WriteLine("不存在");}else{// 存在
獨孤劍
2018-05-09 10:33
閱讀:2073
代碼如下:string url = "http://www.abc.com/這里是中文測試參數";// 方式一
// 編碼 http%3a%2f%2fwww.abc.com%2f%e8%bf%99%e9%87%8c%e6%98%af%e4%b8%ad%e6%96%87%e6%b5%8b%e8%af%95%e5%8f%82%e6%95%b0
string urlE
獨孤劍
2018-04-29 21:38
閱讀:3756
Winform 加載時各事件的順序using System;
using System.Windows.Forms;namespace WindowsFormsApp12
{/*1131456562711128910341516*/public partial class Form1 : Form{public Form1(){Console.WriteLine("1");Init
獨孤劍
2018-04-18 17:24
閱讀:1815
C# DataTable某一列轉換為Array數組或List
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;namespace ConsoleApp26
{class Program{// 添加引用:System.Data.DataSetExtens
獨孤劍
2018-04-17 16:36
閱讀:5115
C# 使用 FileStream 流讀取文件為二進制數組, 保存至Byte[]類型的變量中static void Main(string[] args){string path = "D:\\001.txt";// 方式一using (System.IO.FileStream fs = new System.IO.FileStream(path, S
獨孤劍
2018-04-12 22:21
閱讀:3759
硬盤權限里增加用戶組“Authenticated Users”
獨孤劍
2018-04-11 11:01
閱讀:1063
1.組策略:gpedit.msc2.計算機配置/管理模板/系統/Windows時間服務/時間提供程序3.配置 Windows NTP 客戶端"time.nist.gov,0x9"4.啟用NTP客戶端;點擊 應用、確定 按鈕5.PowerShell執行命令:gpupdate /force,更新組
獨孤劍
2018-04-10 10:38
閱讀:1722
在IIS下面實現URL的重寫 Asp.Net中不修改IIS實現URL重寫,支持任意擴展名及無擴展名說到不用設置iis,主要是為了實現在虛擬主機或是拿不到iis操作限的時候,不能添加isap又想實現類似于靜態化的程序實現方式,先聲明,
獨孤劍
2018-04-09 14:58
閱讀:1231
最近在遷移其他數據庫 ,遷移訂閱發布主機的時候,出現如下錯誤1、出現14013錯誤,提示未開啟訂閱發布選項;2、故執行如下語句:use mastergoexec sp_replicationdboption @dbname = n'test', @optname = n'publish',
獨孤劍
2018-04-02 20:06
閱讀:3038