Exception thrown: 'System.InvalidOperationException' in System.dll ("The key 'LocalizedPerfCounter' does not exist in the appSettings configuration section.")System.InvalidOperationExceptionKB2783767 補
獨孤劍
2018-03-26 22:34
閱讀:1112
C# Console, Winform, ASP.NET Webform, 獲取當前應用程序所在路徑string path = "";// 在 應用程序 或者 AspNet 下獲取當前應用程序目錄推薦方式為// d:\ConsoleApp1\bin\Debug\path = System.AppDomain.CurrentDoma
獨孤劍
2018-03-15 10:05
閱讀:1429
// 取消這種方式 using namespace std;而應這樣做int x;std::cin >> x ;std::cout 或者這樣做using std::cin;using std::cout;using std::endl;int x;cin >> x;cout // -----demo#include // 取消 using namespace st
獨孤劍
2018-03-06 23:15
閱讀:2528
新簽發(fā)的身份證號標準位數(shù)為18位,但是之前老的身份證號位數(shù)是有15位static void Main(string[] args){// length=15 or 18 ^([1-9]\d{7}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3})|([1-9]\d{5}[1-9]\d{3}((0\d)|(1[
獨孤劍
2018-03-06 16:20
閱讀:1015
以TPlink為例,給指定的MAC分配IP,但是卻出現(xiàn)兩個條目,而且客戶機的ip也沒有按照指定的生效解決方案:cmdipconfig /releaseipconfig /renew
獨孤劍
2018-02-10 13:25
閱讀:2438
osql -S 【數(shù)據(jù)庫服務器】-U 【登陸用戶名】 -P 【登陸密碼】osql -S 127.0.0.1 -U sa -P 123456789use TestDBgoselect * from TestTablego
獨孤劍
2018-02-10 10:23
閱讀:1559
網(wǎng)線水晶頭的制作分兩種標準:T568A和T568B。當網(wǎng)線兩端采用同一標準制作的水晶頭,就是直通接線方式。(大多都采用T568B標準。)當網(wǎng)線兩端不同標準制作的水晶頭,也就是一頭為T568A,另一頭為T568B,那么就是交叉接
獨孤劍
2018-02-10 10:21
閱讀:1930
1、安裝 URL Model 2.02、Web.config, system.webServer增加重寫規(guī)則
獨孤劍
2018-02-03 21:58
閱讀:1081
//// 按月簽到 //string signtime = "12:00"; //string signdate = "23"; //DateTime start = Convert.ToDateTime(DateTime.Now.Year.ToString() + "/" + DateTime.Now
獨孤劍
2018-02-03 16:59
閱讀:1252
static void Main(string[] args) { byte[] bt = new byte[] { 0, 0, 0, 0, 0, 0, 7, 211 }; string str1 = "0x" + BitConverter.ToString(bt).Replace("-", "");// 0x00000000
獨孤劍
2018-02-03 16:59
閱讀:1407
using System;using System.Collections.Generic;using System.Net;using System.Text;namespace Demo{ class Program { static void Main(string[] args) { try {
獨孤劍
2018-02-03 08:43
閱讀:975
8.8.8.8是GOOGLE的公用DNS,114.114.114.114是中國的公用DNS
獨孤劍
2018-02-01 20:44
閱讀:989
ASP.NET 顯示所有Cookies, Session, Application// SessionResponse.Write("Session的所有值:");foreach (string obj in Session.Contents){Response.Write(obj.ToString() + ":" + Session[obj] + "");}// CookiesRe
獨孤劍
2018-02-01 09:58
閱讀:1268
Visual Studio, C# 程序集信息 AssemblyInfo.cs 文件詳解
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;// 有關程序集的常規(guī)信息通過以下
// 特性集控制。
獨孤劍
2018-01-31 14:53
閱讀:2210
https://technet.microsoft.com/zh-cn/library/system.threading.thread.isbackgroundhttps://technet.microsoft.com/en-us//library/system.threading.thread.isbackgroundMSDN解釋:獲取或設置一個值,該值指示某個
獨孤劍
2018-01-31 14:31
閱讀:1333