Time of Update: 2015-07-29
標籤:背景:在程式中,寫sql語句時,可能要根據變數的值不同,SQL語句產生相應的變化。比如說存在變數StuName,根據變數值的不同,檢索不同姓名的學生記錄,這時需用到預留位置的知識。1,{0}預留位置,代碼如下:1 string sql=@"select top 1 * from Student where StuName=‘{0}‘";2 sql = string.Format(sql,
Time of Update: 2015-07-15
標籤:.net 5.0 c#6 mvc6 wcf5 nosql azure微軟開源實戰訓練營 內部120課視頻學習資料: 從入門到進階開發! 最新.NET 5.0 C#6 MVC6 WCF5 NoSQL Azure開發120課視頻 老熊年薪42萬,94年專科龔少月薪18900:http://pan.baidu.com/s/1qWsp5M0http://yunpan.cn/cjkkn7gt9N6Zg 訪問密碼
Time of Update: 2015-08-26
標籤:製作異形表單或控制項的思路一般都是想辦法產生一個region,然後設定給指定的視窗或控制項。產生region的方法有很多,最常用的就是從一幅圖片產生,把該圖片中的透明色部分“摳”掉,剩下的部分作為一個region。設定視窗或控制項的region可以用SetWindowRgn API,不過.NET
Time of Update: 2015-08-11
標籤: 當前的螢幕除工作列外的工作域大小 this.Width = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Width; this.Height = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea.Height;當前的螢幕包括工作列的工作域大小this.Width=System.Windows.Forms.Screen.PrimaryScreen.
Time of Update: 2015-08-05
標籤:Json資料:{ "dataSet": { "header": { "returnCode": "0", "errorInfo": "HTTP請求錯誤", "version": "V1.0R010", "totalRows": "2000", "returnRows": "20" }, "fieldDefine": { "assetId": "string", "serverIdcId":
Time of Update: 2015-08-04
標籤:Lambda運算式只是用更簡單的方式來寫匿名方法,徹底簡化了對.NET委託類型的使用。現在,如果我們要使用泛型 List<> 的 FindAll() 方法,當你從一個集合去提取子集時,可以使用該方法。// 該方法唯一的參數是一個System.Predicate<T>類型的泛型委派public List<T> FindAll(Predicate<T> match);// 該委託指向任意以型別參數作為唯一輸入參數並返回bool的方法public
Time of Update: 2015-07-31
標籤:命名空間:System.DiagnosticsStopwatch 執行個體可以測量一個時間間隔的已耗用時間,也可以測量多個時間間隔的總已耗用時間。在典型的 Stopwatch 方案中,先調用 Start 方法,然後調用Stop 方法,最後使用 Elapsed 屬性檢查已耗用時間。Stopwatch 執行個體或者在運行,或者已停止;使用 IsRunning 可以確定 Sto
Time of Update: 2015-07-31
標籤:1、自動屬性預設初始化使用代碼public string Id { get; set; } = "001";編譯器產生的程式碼:public class Customer { [CompilerGenerated] private string kBackingField = "hello world"; public Customer() { this.kBackingField = "hello world"; }public string Name{
Time of Update: 2015-07-10
標籤:private void btnFile_Click(object sender, EventArgs e) { OpenFileDialog fileDialog = new OpenFileDialog(); fileDialog.Multiselect = true; fileDialog.Title = "請選擇檔案"; fileDialog.Filter="所有檔案(*.*)|*.*"; if (fileDialog.ShowDialog() ==
Time of Update: 2015-06-16
標籤:1.訊息佇列是Windows 8作業系統的一部分。這個服務的主要功能如下:(1)訊息可以在中斷連線的環境下發送。不需要同時運行在發送和正在接受的應用程式。(2)使用快捷模式,訊息可以非常快得發送。在快捷模式下,訊息儲存在記憶體中。(3)對於可恢複的機制
Time of Update: 2015-06-17
標籤:單問號---用於給變數設初值的時候,給變數(int類型)賦值為null,而不是0!雙問號---用於判斷並賦值,先判斷當前變數是否為null,如果是就可以賦一個新值,否則跳過! public int? para; //public int para;如果不注釋掉此行,而把上一行注釋掉的話,下面會報錯! public int par() { &nbs
Time of Update: 2015-06-07
標籤:1、元素和特性的區別:可以給元素添加子項目或特性,而對特性不可以;未經壓縮就在網路上傳輸文檔,則特性佔用更少的頻寬。2、VS中XML的聲明只支援1.0版本:<?xml version = "1.0"?>3、命名空間:xmlns:namespace1 = ""
Time of Update: 2015-06-02
標籤: 說明一下效能方面 還可以接受 迴圈1000次普通Switch是用了0.001秒 ,擴充函數為0.002秒 , 如果是大項目在有負載平衡的情況下完全可以無視掉,小項目也不會計較這點效能了。 注意需要引用 “SyntacticSugar”用法: //【Switch】 string bookKey = "c#"; //以前寫法 string
Time of Update: 2015-06-01
標籤:https://msdn.microsoft.com/en-us/library/hh156499(v=vs.140).aspx This page lists key feature names for each version of C# with descriptions of the new and enhanced features in the lastest version of the language. Previous VersionsC# 1,
Time of Update: 2015-05-29
標籤:/// <summary>/// 日期轉換成unix時間戳記/// </summary>/// <param name="dateTime"></param>/// <returns></returns>public static long DateTimeToUnixTimestamp(DateTime dateTime){ var start = new DateTime(1970, 1, 1, 0, 0,
Time of Update: 2015-05-06
標籤:作為一門專為程(yu)序(fa)員(tang)考慮的語言,感受一下來自微軟的滿滿的惡意...1. 字串內聯在之前的版本中,常用的格式化字串:var s = String.Format("{0} is {1} year{{s}} old", p.Name, p.Age);在 C# 6 中://無格式var s = $"{p.Name} is {p.Age} year{{s}} old";//帶格式var s = $"{p.Name,20} is {p.Age:D3} year{{s}}
Time of Update: 2015-05-01
標籤:C# Winform程式的toolStrip中toolStripButton的背景是藍色的,怎樣改變背景及邊框的顏色和樣式呢?實現此功能須要重寫toolStripButton的Paint方法這裡僅僅是給出解決這個問題的思路和方法,例如以,當滑鼠移到button上,背景會變為黑色實現代碼例如以下: ToolStripButton tsb = (ToolStripButton)sender; Rectangle rectButton =
Time of Update: 2015-04-14
標籤: 在學習ASP.NET MVC之前,有必要先瞭解一下C#3.0所帶來的新的文法特性,這一點尤為重要,因為在MVC項目中我們利用C#3.0的新特性將會大大的提高我們的開發效率,同時,在MVC項目中你將到處可以看到C#3.0新特性的身影。C#3.0新特性自動屬性隱式類型
Time of Update: 2015-03-15
標籤:補充: 1:在C語言裡 char佔1個位元組 而在C#,Java裡char佔兩個位元組 資料庫裡char 中漢佔兩個位元組 字母數字佔一個字 2:string是c#中的類,String是.net Framework的類
Time of Update: 2015-02-28
標籤:using System;namespace DelegateDemo{ class Program { private delegate int Cacu(string str); static void Main(string[] args) { //1 Cacu cacu = new Cacu(CacuInstance);