一
點擊
如
protected override void WndProc(ref Message m)
{
const int WM_SYSCOMMAND =
const int SC_CLOSE =
if (m
{
// User clicked close button
this
return;
}
base
}
二
foreach是一個對集合中的元素進行簡單的枚舉及處理的現成語句
using System;
using System
namespace LoopTest
{
class Class
{
static void Main(string[] args)
{
// create an ArrayList of strings
ArrayList array = new ArrayList();
array
array
array
// print the value of every item
foreach (string item in array)
{
Console
}
}
}
}
你可以將foreach語句用在每個實現了Ienumerable接口的集合裡
在編譯的時候
IEnumerator enumerator = array
try
{
string item;
while (enumerator
{
item = (string) enumerator
Console
}
}
finally
{
IDisposable d = enumerator as IDisposable;
if (d != null) d
}
這說明在後台
三
WinForm的資源文件中
例子
using System
Stream stream = new FileStream(
SoapFormatter f = new SoapFormatter();
Image img = Image
f
stream
四
在WinForm中的TextBox控件沒有辦法屏蔽CTRL
private void richTextBox
{
if(e
e
}
五
使用System
bool exist = System
如果需要判斷目錄(文件夾)是否存在
bool exist = System
六
在C#編程中
(
(
(
(
例子
public delegate void MyEventHandler(object sender
public class DataImports
{
// 定義新事件NewLineRead
public event MyEventHandler NewLineRead ;
public void ImportData()
{
long i =
while()
{
i++ ;
// 觸發事件
if( NewLineRead != null ) NewLineRead(this
//
}
//
}
//
}
// 以下為Client代碼
private void CallMethod()
{
// 聲明Class變量
private DataImports _da = null;
// 指定事件處理程序
_da
// 調用Class方法
_da
}
// 事件處理程序
private void DA_EnterNewLine(object sender
{
//
}
七
使用System
private string GetHostNameByIP(string ipAddress)
{
IPHostEntry hostInfo = Dns
return hostInfo
}
private string GetIPByHostName(string hostName)
{
System
return hostInfo
}
From:http://tw.wingwit.com/Article/program/net/201311/15559.html