摘要:
var sheng = document.getElementById("sheng"); var falge =0; sheng.onclick = function() { if(this.parentNode.classList.contains('linkage-selected')){ //... 阅读全文
摘要:
//倒叙排列 string temp=""; for (int i = 0; i < strlist.Length / 2; i++) { temp = strlist[i]; strlist[i] = strlist[strlist.Length-1 - i]; strlist[strlist.Length - 1 - i] = temp; } 阅读全文
摘要:
public class A { public A() { } public A(string str) { } } 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.AspNetCore.Http; u 阅读全文
摘要:
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Network Connections]"NC_IpStateChecking"=dword:00000000"NC 阅读全文
摘要:
using Microsoft.Win32; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.IO; using System.Ru... 阅读全文
摘要:
阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Extr... 阅读全文
摘要:
C# 支持多线程并行执行程序 1.一个程序由一个单线程开始,该单线程由CLR和操作系统创建而成,并具有多线程创建额外线程的功能. 2.创建线程的方法 2.1 通过Thread类来创建线程. ThreadStart委托创建线程 ThreadStart ts=new ThreadStart(Run);//创建指定线程从哪里(哪个方法)开始的委托 Thread th=new Thread(t... 阅读全文
摘要:
C#创建目录 var strpatj = HttpRuntime.AppDomainAppPath; if (!Directory.Exists(strpatj+"\\temp")) Directory.CreateDirectory(strpatj + "\\temp"); C#在目录下创建文件 StreamReader sr = new StreamReader(filestrem, Sys... 阅读全文