Time of Update: 2018-12-07
1: C#做外掛的常用API. 2: 3: using System; 4: using System.Collections.Generic; 5: using System.Text; 6: using System.Runtime.InteropServices; //這個肯定要的 7: 8: namespace WindowsApplication1 9: { 10: class win32API 11:
Time of Update: 2018-12-07
①什麼是程式集?可以把程式集簡單理解為你的.NET項目在編譯後產生的*.exe或*.dll檔案.嗯,這個確實簡單了些,但我是這麼理解的.詳細:http://blog.csdn.net/sws8327/archive/2006/09/21/1244642.aspx②程式集和命名空間的區別?一個程式集可以跨越n個命名空間,一個命名空間也可以包含n個程式集.(估計你該暈了)如果說命名空間是類庫的邏輯組織形式,那麼程式集就是類庫的物理組織形式。只有同時指定類型所在的命名空間及實現該類型的程式集,才能完全
Time of Update: 2018-12-07
我一直以為我是個人才,今天才TMD知道,我是個天才!
Time of Update: 2018-12-07
實現矩陣轉換功能。 矩陣由一個4*4的文字框資料表示,在相應文字框中輸入矩陣元的值,單擊“轉換”按鈕,完成矩陣的轉換。 代碼如下:Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->public partial class Form1 : Form { TextBox[,] tbList = null;
Time of Update: 2018-12-07
刪除行,使用DataRow.Delete()方法。Delete()方法不執行刪除操作,僅僅標記要刪除的行。需使用Update方法確認刪除。 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System.Data.SqlClient;namespace DeleteingData{ public partial class Form1
Time of Update: 2018-12-07
RadioButton常用屬性AppearanceRadioButton可以顯示為一個圓形選中標籤,放在左邊、中間、或右邊,或者顯示為標準按鈕。當它顯示為按鈕時,控制項被選中時顯示為按下狀態,否則顯示為彈起狀態AutoCheck是否被選中。為True時,顯示一下被選中標記CheckAlign改變單遠按鈕複選框的對齊形式,默認為ContentAlignment.MiddleLeftCheckded控制項的選中狀態,選中時為TrueRadioButton常用事件CheckChanged選中改變時,引
Time of Update: 2018-12-07
Code highlighting produced by Actipro CodeHighlighter
Time of Update: 2018-12-07
&是二進位按位與運算子;~是二進位按位取反運算子。 代碼:Code highlighting produced by Actipro CodeHighlighter
Time of Update: 2018-12-07
Code highlighting produced by Actipro CodeHighlighter
Time of Update: 2018-12-07
實值型別表 實值型別 類別 bool 布爾型 byte 無符號、數值、整數 char 無符號、數值、整數 decimal 數值、十進位 double 數值、浮點 enum 枚舉 float 數值、浮點 int 有符號、數值、整數 long 有符號、數值、整數 sbyte 有符號、數值、整數 short 有符號、數值、整數 struct 使用者定義的結構 uint 無符號、數值、整數 ulong
Time of Update: 2018-12-07
當剛剛看到Blog上有人學習字串的刪除,我也順便擴充學習下。代碼如下:Code highlighting produced by Actipro CodeHighlighter
Time of Update: 2018-12-07
C# 判斷路徑是否合法Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->Using
Time of Update: 2018-12-07
程式完成後,要對其進行測試。我做一個記錄時間的程式,便於測試。Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--> #region 記錄時間 測試使用 /// <summary> /// 得到當前時間 /// </summary> private static
Time of Update: 2018-12-07
剛剛做了一個簡單的打開檔案小程式,並思考了一下打開檔案的步驟 介面如下圖: /*過程1、實例化一個打開OpenFileDialog類2、在窗體構造函數中建立FileOk(“開啟”按鈕)事件3、在事件方法編寫代碼 3.1、得到檔案的相關資訊(實例化一個FileInfo類) 3.2、讀取檔案(實例化一下個TextReader類)4、在按鈕中調用OpenFileDialog的ShowDialog() 註:代碼中,
Time of Update: 2018-12-07
代碼中實現了三個自訂事件,分別為自訂事件、自訂事件及自訂參數、使用Action自訂事件。 using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace AppMain{ /// <summary> /// 入口 /// </summary> public class RunEventDemo { #regio
Time of Update: 2018-12-07
第一種方法: string s = "abcdeabcdeabcde"; string[] sArray = s.Split('c'); foreach (string i in sArray) Console.WriteLine(i.ToString()); Console.ReadKey(); 輸出下面的結果: ab deab deab de第二種方法:
Time of Update: 2018-12-07
如果要實現多頁列印,就要使用PrintPageEventArgs類的HasMorePages屬性。我們對之前的代碼作如下變更: 增加PrintDocument的BeginPrint和EndPrint事件。BeginPrint事件用於得到被列印的內容。EndPrint用於釋放資源。 PrintDocument的PrintPage事件中實現分頁。 基中:BeginPrint的事件方法在PrintPage事件方法前被呼叫。
Time of Update: 2018-12-07
這裡使用SMTP發郵件,什麼是SMTP呢?SMTP:“Simple Mail Transfer Protocol”,即簡易郵件傳輸通訊協定。它是一組用於從源地址到目的地址傳輸郵件的規範,通過它來控制郵件的中轉方式。 要發送郵件,先瞭解郵件有哪些內容構成: 郵件服務器地址 連接埠 寄件人 收件者 副本人 密件人 標題 本文 附件
Time of Update: 2018-12-07
1.總是用屬性 (Property) 來代替可訪問的資料成員 2.在 readonly 和 const 之間,優先使用 readonly 3.在 as 和 強制類型轉換之間,優先使用 as 操作符 4.使用條件屬性 (Conditional Attributes) 來代替條件編譯語句 #if 5.總是為自訂類重載 ToString 方法 6.區別實值型別和參考型別 7.使用不可變的實值型別(Immutable Atomic Value
Time of Update: 2018-12-07
以下樣本建立一個 OleDbConnection 和一個 OleDbTransaction。它還示範了如何使用 BeginTransaction、Commit 和 Rollback 方法。public void RunOleDbTransaction(string myConnString){OleDbConnection myConnection = new OleDbConnection(myConnString);myConnection.Open();OleDbCommand