Time of Update: 2017-02-28
技巧|控制|下載 //c#使用線程下載檔案的控制技巧和缺陷//系統引用//定義線程公開變數//開始線程下載檔案//中止線程下載//系統引用using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Net; using System.IO;using
Time of Update: 2017-02-28
添加引用system.design.dll//選擇檔案的儲存路徑 DirBrowser olderBrowserDlg=new DirBrowser(); if (folderBrowserDlg.ShowDialog()==DialogResult.OK) {
Time of Update: 2017-02-28
函數|檔案名稱 #region 擷取網址中網域名稱,目錄,檔案名稱的函數 public string GetUrlDomainName(string strHtmlPagePath) { string p = @"http://[^\.]*\.(?<domain>[^/]*)"; &
Time of Update: 2017-02-28
iis|網站 private void comboBox1_SelectedIndexChanged(object sender, System.EventArgs e) { string currentServerComment=comboBox1.SelectedItem.ToString(); string currentSiteNum =
Time of Update: 2017-02-28
編程 當把隨身碟放插入,然後程式自動將隨身碟的內容複寫到本地硬碟using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.IO;namespace
Time of Update: 2017-02-28
插入|排序|演算法 本文介紹了C#的四種排序演算法:冒泡排序、選擇排序、插入排序和希爾排序 冒泡排序using System;namespace BubbleSorter { public class BubbleSorter { public void Sort(int [] list) { int i,j,temp; bool done=false; j=1; while((j<list.Length)&&(!done)) {
Time of Update: 2017-02-28
//建立pdf檔案 using System; using System.IO; using System.Text; using System.Collections; namespace paladin.utility {
Time of Update: 2017-02-28
編碼|規範 一、匈牙利命名法: Windows 編程中用到的變數(還包括宏)的命名規則匈牙利命名法,這種命名技術是由一位能乾的 Microsoft 程式員查爾斯·西蒙尼(Charles Simonyi) 提出的。匈牙利命名法通過在變數名前面加上相應的小寫字母的符號標識作為首碼,標識出變數的範圍,類型等。這些符號可以多個同時使用,順序是先m_(成員變數),再指標,再單一資料型別,
Time of Update: 2017-02-28
這篇文章來自是Mukund Pujari的《Some Cool Tips for .NET》,本人給大家翻譯總結一下,我英語水平也就那麼回事,不合適的地方還是請大家提出來。 1. 如何建立一個可改變大小沒有標題列的表單?(How to create a form with resizing borders and no title bar?) form1.Text = string. Empty; form1.ControlBox = false; 2.
Time of Update: 2017-02-28
正則 多少年來,許多的程式設計語言和工具都包含對Regex的支援,.NET基礎類庫中包含有一個名字空間和一系列可以充分發揮規則運算式威力的類,而且它們也都與未來的Perl 5中的規則運算式相容。 此外,regexp類還能夠完成一些其他的功能,例如從右至左的結合模式和運算式的編輯等。
Time of Update: 2017-02-28
訪問|伺服器 This is a follow up to my SMTP example that shows how to access your POP3 server. This program connects and logs on to your POP3 server, and checks to see how many new messages you have. The instantiation of the POP is
Time of Update: 2017-02-28
如下C#代碼:int sum=0;for(int i=1;i<101;i++){ if(i%2!=0) { continue; } sum+=i;}可以考慮用以下VB.NET代碼實現:Dim sum As Integer, i As IntegerFor i = 1 To 10
Time of Update: 2017-02-28
編程 前言0.1 提要歡迎閱讀《展現 C#》(Presenting C#)。這本書是你提高企業程式設計語言的一條捷徑。這種企業程式設計語言帶有下一代程式設計語言服務運行時(NGWS Runtime):C#(發音"C sharp")。NGWS Runtime
Time of Update: 2017-02-28
C#中的解構器引言 在公司專屬應用程式開發世界,效能,靈活性和安全性是最重要的。我作為一個VC++程式員開始我的職業生涯,並且在一個晴朗的早晨,我被轉到了Web開發部。像每個C++程式員一樣,我也很失落。我想每個像Tom,Dick甚至Harry能用HTML編程。然而,不久我就發現真正的挑戰是生產高效能的,靈活的可靠的應用程式。綜上所述,Web環境松耦合的,不分國界的本質將使你永遠神往。
Time of Update: 2017-02-28
正則 using System.Text.RegularExpressions;using System;class Validation{ public static void Main() { String strToTest; Validation objValidate=new Validation();&
Time of Update: 2017-02-28
函數|數組 頭暈腦漲地研究了一天,就為了實現在函數的參數中返回結構數組。現供大家分享,節省學習時間。執行個體: /// <summary> /// 使用者資訊結構 /// </summary> public struct TUSER { public string
Time of Update: 2017-02-28
建立
Time of Update: 2017-02-28
教程 本節課將介紹C#的屬性,其目的包括:1.理解什麼是屬性2.如何?屬性3.建立一個唯讀屬性4.建立一個唯寫屬性屬性是C#中獨具特色的新功能。通過屬性來讀寫類中的域,這具有一定的保護功能。在其它語言中,這是通過實現特定的getter和setter方法來實現的。C#的屬性具有保護功能,可以讓你就象訪問域一樣訪問屬性。要瞭解屬性的用法,我們先來看看如何用傳統的方法對域進行封裝。1.清單 10-1. 傳統的訪問類的域的例子:Accessors.cs
Time of Update: 2017-02-28
對話方塊 按行讀寫檔案判斷檔案是否存在:File.Exists(string filePath)判斷目錄是否存在:Directory.Exists("D:\\LastestVersion")按行讀取檔案: int fileCount=0; // Open the file just specified such that no one else can use it. StreamReader sr = new
Time of Update: 2017-02-28
教程|控制|迴圈|語句 本節課將介紹如何使用C#控制語句中的迴圈語句,本課目的如下:1.學會"while"迴圈的用法。2.學會"do" 迴圈的用法。3.學會"for"