目前分類:C# (21)
- Oct 22 Mon 2012 16:16
將網站及Blog登錄到Google、Bing、Yahoo及Baidu的搜尋引擎內
- Oct 18 Thu 2012 21:45
[C#] 執行外部檔案
命名空間:
using System.Diagnostics;
- Oct 18 Thu 2012 16:37
C# []、List、Array、ArrayList 區別及應用
- Oct 18 Thu 2012 16:34
SQL Server型態與C# Mapping (SQL2000/SQL2005/SQL2008/SQL2012)
- Oct 18 Thu 2012 16:32
Team Foundation Server 2010 安裝.全功能介紹
- Oct 18 Thu 2012 16:32
[ASP.NET][C#]app.config與web.config的增加、修改、刪除操作
[ASP.NET][C#]app.config與web.config的增加、修改、刪除操作
應用程式組態檔,對於asp.net是web.config,對於WindowsForm程式則是App.config(執行檔名稱.exe.config)。組態檔對於程式本身來說,就是基礎和依據,其本質是一個xml檔案,對於組態檔的操作,從.net2.0開始就方常的方便了,提供了System.Web.Configuration與System.Configuration兩個命名空間,要使用它,需要加入參考。
- Oct 18 Thu 2012 16:31
[WinForm]Windows程式(非網頁) #1,如何從app.config檔讀取資料庫連結字串(ConnectionString)
- Oct 18 Thu 2012 16:30
[ASP.NET][C#]app.config與web.config的增加、修改、刪除操作
- Oct 18 Thu 2012 16:29
C# Convert (int) 取整數問題
交接來的程式發生了一個轉型上的錯誤,原來用 Convert 取整數時小數會進位,之後使用(int)結果便是正確,所以Convert 跟 (int)的轉型機制不同,使用在浮點運算要小心。
- Oct 18 Thu 2012 16:28
C# 四捨五入,無條件進位及無條件捨去寫法
- Oct 18 Thu 2012 16:27
如何取得目前程式執行的根目錄
- Oct 18 Thu 2012 16:26
C# 取得系統特殊目錄及環境變數
- Oct 18 Thu 2012 16:25
(C#) 屬性的設法(get、set)
- Oct 18 Thu 2012 16:24
[C#] 資料繫結 (Data Binding 簡單資料繫結
- Oct 18 Thu 2012 16:21
[C#] 事件 (Events)
- Oct 18 Thu 2012 16:20
C# 判斷 Type 的三種方法
- Oct 18 Thu 2012 16:19
C#將圖片白色背景設置為透明
C#將圖片白色背景設置為透明
Image image = System.Drawing.Image.FromFile(@"C:\A.JPG");
Bitmap pbitmap = new Bitmap(image);
- Oct 18 Thu 2012 16:19
C# 判斷 Type 的三種方法
- Oct 18 Thu 2012 16:18
C# WINFORM 取得執行程式所在的路徑方法
- Oct 18 Thu 2012 16:15
用System.Attribute擴展中繼資料
//用System.Attribute擴展中繼資料
//本文以一個專案中通用的驗證類來舉例說明如何使用自訂Attribute來擴展中繼資料。