官方說明:http://cloud.youku.com/services/info?serid=1
獨孤劍
2017-03-24 19:25
閱讀:1122
C# 獲取指定文件夾, 某文件夾下的文件個數
string path = @"D:\001"; // 文件夾目錄
System.IO.DirectoryInfo dir = new System.IO.DirectoryInfo(path);
int fileCount = dir.GetFiles().Length; // 該目錄下的文件數
獨孤劍
2017-03-24 09:35
閱讀:2414
窗體拖拽一個button,代碼樣例中使用OpenFileDialog對象new一個新實例,等同于在窗體拖拽OpenFileDialog控件,兩種方式都可以,實現功能效果是相同的using System;
using System.Windows.Forms;namespace WindowsForm
獨孤劍
2017-03-08 12:40
閱讀:1259
窗體拖拽一個button,代碼樣例中使用FolderBrowserDialog對象new一個新實例,等同于在窗體拖拽FolderBrowserDialog控件,兩種方式都可以,實現功能效果是相同的using System;
using System.Windows.Forms;namespace W
獨孤劍
2017-03-08 12:36
閱讀:1251
窗體拖拽一個button,代碼樣例中使用SaveFileDialog對象new一個新實例,等同于在窗體拖拽SaveFileDialog控件,兩種方式都可以,實現功能效果是相同的
using System;
using System.Windows.Forms;namespace WindowsFor
獨孤劍
2017-03-08 12:36
閱讀:1196
數組常見的幾種聲明方式,根據項目實際需要選擇合適的方式即可。// 一維數組初始化并賦值
// 方式一
string[] str1 = { "1", "2", "3" };// 方式二
string[] str2;
str2 = new string[3];// 方式三
string[] str3;
st
獨孤劍
2017-03-05 16:12
閱讀:1065
雙擊窗體載入事件private void Form1_Load(object sender, EventArgs e)
{this.Text = "窗體標題";
}
獨孤劍
2017-03-05 16:10
閱讀:1018
// 消息框 MessageBox.Show("顯示內容", "標題", MessageBoxButtons.OKCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2);// 焦點在取消按鈕 MessageBox.Show("
獨孤劍
2017-03-05 16:10
閱讀:1106
添加配置文件:App.config or Web.config讀取引用:using System.Configuration;string conn1 = ConfigurationManager.ConnectionStrings["DBConnString1"].ConnectionString;
string conn2 = ConfigurationManager.C
獨孤劍
2017-03-02 20:50
閱讀:1424
開發文檔 開發文檔是描述軟件開發過程,包括軟件需求、軟件設計、軟件測試、保證軟件質量的一類文檔,開發文檔也包括軟件的詳細技術描述、程序邏輯程序間相互關系、數據格式和存儲等 開發文檔起到如下五種作用 1、它們
獨孤劍
2017-03-02 20:13
閱讀:1220
directx sdk已經裝了,為什么找不到 Microsoft.directx 這樣的組件可以引用------解決方案--------------------------------------------------------要手工添加的,路徑如下: X:\Windows\Microsoft.NET\DirectX for
獨孤劍
2017-01-19 17:05
閱讀:943
if (Regex.Match(items[i].ToString(), "^\\d+$").Success) { // 數字 } else if (Regex.Match(items[i].ToString(), "^[a-zA-Z]+
獨孤劍
2016-12-30 13:46
閱讀:916
C# 將字符串轉換為字符數組using System;namespace ConsoleApp11
{class Program{static void Main(string[] args){string a = "12345";char[] b = a.ToCharArray();Console.Read();}}
}
獨孤劍
2016-12-30 13:43
閱讀:1038
asp cookies
獨孤劍
2016-12-30 12:45
閱讀:908
ASP Session
獨孤劍
2016-12-30 12:44
閱讀:878