国产97色在线|亚洲-欧美人妻另类制服丝袜-欧美人成国产91视频-殷素素一女战二夫|www.ycjrc.net

位置 : 首頁 > 編程開發
正數和正整數正則表達式
正數(包括小數):/^[+]{0,1}(\d+)$|^[+]{0,1}(\d+\.\d+)$/正整數(不包括小數):/^[+]{0,1}(\d+)$/
獨孤劍 2018-07-02 22:19 閱讀:1458
C# List<>集合分頁
要求.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
C# Array是否包含某項元素
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# List<>集合去除重復項
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
SVN ra_serf: An error occurred during SSL communication
如果用的是USB Wifi換一個無線網卡,當前的無線上網卡驅動有問題
獨孤劍 2018-05-28 09:28 閱讀:2854
12個月份縮寫
一 月:January 簡寫:Jan.二 月:February 簡寫:Feb.三 月:March 簡寫:Mar.四 月:April 簡寫:Apr.五 月:May 簡寫:May.六 月:June 簡寫:Jun.七 月:July 簡寫:Jul.八 月
獨孤劍 2018-05-21 09:56 閱讀:2542
C# 判斷數組中是否存在某個數組值, 數組包含某項
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
C# 實現Url編碼和解碼
代碼如下: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 加載時各事件的順序(一)
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<>集合
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[]類型的變量中
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
域控下的新增用戶 在邏輯硬盤沒有創建文件 創建 word等文件的權限
硬盤權限里增加用戶組“Authenticated Users”
獨孤劍 2018-04-11 11:01 閱讀:1063
Windows Server 2012 NTP時間同步
1.組策略:gpedit.msc2.計算機配置/管理模板/系統/Windows時間服務/時間提供程序3.配置 Windows NTP 客戶端"time.nist.gov,0x9"4.啟用NTP客戶端;點擊 應用、確定 按鈕5.PowerShell執行命令:gpupdate /force,更新組
獨孤劍 2018-04-10 10:38 閱讀:1722
Asp.Net中不修改IIS實現URL重寫,支持任意擴展名及無擴展名
在IIS下面實現URL的重寫 Asp.Net中不修改IIS實現URL重寫,支持任意擴展名及無擴展名說到不用設置iis,主要是為了實現在虛擬主機或是拿不到iis操作限的時候,不能添加isap又想實現類似于靜態化的程序實現方式,先聲明,
獨孤劍 2018-04-09 14:58 閱讀:1231
sql server 更改實例名之后 發布訂閱 錯誤
最近在遷移其他數據庫 ,遷移訂閱發布主機的時候,出現如下錯誤1、出現14013錯誤,提示未開啟訂閱發布選項;2、故執行如下語句:use mastergoexec sp_replicationdboption @dbname = n'test', @optname = n'publish',
獨孤劍 2018-04-02 20:06 閱讀:3038
在線客服