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

位置 : 首頁 > 編程開發
C# 根據文件擴展名返回MimeType
C# 根據文件擴展名返回MimeType, ".jpg"的返回MimeType類型為"image/jpeg"調用方法:MimeHelper.GetMimeMapping(".jpg");/// /// return the system mime type according to the file extension./// public class Mim
獨孤劍 2020-08-06 15:27 閱讀:1845
C# 寫入文本內容, 如果文件不存在則創建
C# 寫入文本內容, 如果文件不存在則創建using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text;namespace ConsoleApp17 {class Program{static void Main(string[
獨孤劍 2020-08-06 15:25 閱讀:3433
C# 讀取文本內容
C# 讀取指定路徑下的文本內容using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text;namespace ConsoleApp17 {class Program{static void Main(string[] args){st
獨孤劍 2020-08-06 15:23 閱讀:1966
C# 數組按照固定跨度, 間隔進行分組合并
C# 數組按照固定跨度, 間隔進行分組合并 using System; using System.Collections.Generic; using System.Text;namespace ConsoleApp16 {class Program{static void Main(string[] args){// 數組string[] arr = new s
獨孤劍 2020-08-06 15:21 閱讀:1647
C# Xml文本字符串轉換為Hashtable
xml是一層結構不涉及嵌套節點時, 轉換為Hashtable對象去操作數據會更便捷 using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Xml;namespace ToolDemo {cl
獨孤劍 2020-08-06 15:19 閱讀:2060
ASP.NET ashx中實現session功能
ashx中實現session功能需要繼承"System.Web.SessionState.IRequiresSessionState"接口 using System; using System.Collections.Generic; using System.Web;namespace WebApplication2 {/// /// Summary description
獨孤劍 2020-08-06 15:17 閱讀:1142
C# SHA1加密
SHA1加密在軟件開發中經常使用, 由于是單向加密也稱作不可逆加密, 經常用來做為校驗使用, 可以用來校驗用戶密碼, 文件校驗/// /// SHA1字符串加密/// /// 需要加密字符串 /// 返回40位大寫字符串 public static
獨孤劍 2020-08-06 15:16 閱讀:2511
C# MD5加密
MD5加密在軟件開發中經常使用, 由于是單向加密也稱作不可逆加密, 經常用來做為校驗使用, 可以用來校驗用戶密碼, 文件校驗/// /// MD5字符串加密/// /// 需要加密的字符串/// 返回32位大寫字符串 public static strin
獨孤劍 2020-08-06 15:14 閱讀:1101
ASP.NET 頁面404設置
Web.config404.aspx/// /// 頁面載入/// protected void Page_Load(object sender, EventArgs e){Response.Status = "404 Not Found";}404 Not Found404 Not Found
獨孤劍 2020-08-06 15:12 閱讀:756
ASP.NET aspx頁面301永久跳轉, 301轉向
頁面永久跳轉,適合網站改版使用原頁面:http://www.abc.com/about.aspx新頁面:http://www.abc.com/about-new.aspxabout.aspx/// /// 初始化頁面/// protected void Page_Load(object sender, EventArgs e){HttpCont
獨孤劍 2020-08-06 15:11 閱讀:1205
C# 生成隨機字符串, 隨機數, 字母+數字
C# 生成隨機字符串, 隨機數, 字母+數字using System;namespace ConsoleApp3 {class Program{static void Main(string[] args){Console.WriteLine(GetNonceStr(5));Console.Read();}/// /// 生成隨機字符串/// /// 字符
獨孤劍 2020-08-06 12:26 閱讀:1323
C# 百分比字符串轉換為數值類型, 小數
C# 百分比字符串轉換為數值類型, 小數static void Main(string[] args){string percent = "45%";double number = double.Parse(percent.Replace("%", "")) / 100;Console.WriteLine(percent + ":" + number);Console.
獨孤劍 2020-08-06 12:24 閱讀:3767
Winform 多線程中處理UI控件, 解決線程安全引起的異常
Winform 多線程中處理UI控件, 多線程中不能直接操作UI控件, 會引發線程安全異常using System; using System.Threading; using System.Windows.Forms;namespace WindowsFormsApp10 {public partial class Form1 : Form
獨孤劍 2020-08-06 12:21 閱讀:1287
C# List<>集合排序, 從大到小排序, 從小到大排序
C# List using System; using System.Collections.Generic; using System.Data; using System.Text;namespace ConsoleApp14 {class Program{static void Main(string[] args){List list1 = new List();list1.Add(new
獨孤劍 2020-08-06 12:19 閱讀:7075
C# 使用ref參數
ref 標識傳入參數是按址傳遞,如果在調用過程中發生更改,那么在調用方法結束后傳入的參數值也會發生改變class Program{static void Main(string[] args){string a = "001";int b = 0;Console.WriteLine("call before
獨孤劍 2020-08-06 12:13 閱讀:1068
在線客服