C# 檔案MD5計算
C# 檔案MD5計算 資料來源: http://www.dotblogs.com.tw/junegoat/archive/2012/08/21/c…
C# 檔案MD5計算 資料來源: http://www.dotblogs.com.tw/junegoat/archive/2012/08/21/c…
VS2010 C# 壓縮單一檔案(使用.NET 4 內建元件) 資料來源: https://msdn.microsoft.com/zh-tw/li…
VS2010 C# 壓縮/解壓縮目錄的方法 資料來源: https://dotnetzip.codeplex.com/ (外部元件) …
讓C#程式以系統管理員身分執行(UAC)[Windows 權限] 資料來源:http://www.dotblogs.com.tw/as15774/…
C# 檔案的加密/解密(DES) 資料來源:http://www.dotblogs.com.tw/yc421206/archive/2012/04…
C# [Winform][User Control] 自訂控制項的顯示屬性 資料來源: http://www.dotblogs.com.tw/yc…
C# 多國語系程式設計介紹 01. C#的語系檔附檔名是RESX,檔案格式內容為XML的文字格式(…
C# 透過呼叫外部程式(rundll32.exe)來達到 啟動控制台 & 清除上網紀錄(cookie) 01. 啟動控制台 String …
C# WinForm關閉應用程式本身的方法 01. this.Close();//單一…
C# 取得目前時間轉字串 using System; using System.Collections.Generic; using System…
C# 使用第三方函式庫來存取JSON using System; using System.Collections.Generic; using …
C# XML(1) 建立/修改/查詢 using System; using System.Collections.Gene…
C++ DLL設計 & C# 呼叫使用(可以要C++動態配置記憶體) //C++ typedef struct _CardReaderSt…
C# MessageBox使用基本語法 資料來源: https://docs.microsoft.com/zh-tw/dotnet/ap…
C# 元件移動座標 this.AutoScroll = false;// 迫使將畫面移至最上面,解決C#只有相對座標(C#的捲軸BUG) &nbs…
C# 元件隱藏/顯示 this.元件.Visible = false; this.元件.Visible = true; …
C# DatePicker 抓取與設定 DateTime Date1 = new DateTime(2015…
C# CheckBox 抓取與設定 this.CheckBox元件.Checked = false; &nbs…
C# ComboBox 抓取與設定 01.建立選單內容 System.Object[] ItemObject = new System.Object…
C# 設定元件致能(Enabled) this.元件.Enabled=true;//false
C# 用程式指定表單(FORM)大小 this.Width = 695; this.Height…
C# 多WinForm指定啟始(開始)頁面(Form) 方法:開啟Program.cs修改Application.Run(new FormName…
C# MessageBox用法介紹 單文顯示文字: MessageBox.Show(“顯示文字內容̶…
C# 字串反轉 和 字串的子字串(Mid / Substring) 字串反轉: public static string StrReverse(s…
C# 字串(String)切割函數(Split) 和 字串轉整數 字串切割: string[] strs = StrBuf.Spli…
C# 進位(進制)轉換『十進位轉二進位、二進位轉十進位、十進位轉十六進位、十六進位轉十進位』 資料來源:http://www.dotblogs.c…
C# 計算時間差 資料來源:https://docs.microsoft.com/zh-tw/dotnet/api/system.diagnost…
[C#基礎]-TCP/IP Command Line下的簡單範例備份 剛才爬文時,發現了一個寫得很好的TCP/IP Command …
C#中的delegate(委託)和event(事件) 資料來源: http://www.itivy.com/ivy/archive/2011/8/5/cshar…
[C#基礎] C# 開發 dll 給C# 使用 今天忽然想要知道「C# 開發 dll」的相關技術,所以爬了一下文,找到一篇淺顯易懂的文章…